Fixed MinimumVitalityPoints wrong letter case.
This commit is contained in:
@@ -192,7 +192,7 @@
|
|||||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||||
<xs:attribute name="pkCount" type="xs:int" />
|
<xs:attribute name="pkCount" type="xs:int" />
|
||||||
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
||||||
<xs:attribute name="minimumVitalityPoints" type="xs:int" />
|
<xs:attribute name="MinimumVitalityPoints" type="xs:int" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:complexType name="andType">
|
<xs:complexType name="andType">
|
||||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
@@ -896,6 +896,12 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case "minimumvitalitypoints":
|
||||||
|
{
|
||||||
|
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
||||||
|
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1091,12 +1097,6 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "minimumvitalitypoints":
|
|
||||||
{
|
|
||||||
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
|
||||||
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1510,7 +1510,7 @@
|
|||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="27615" level="1" /> <!-- Maphr's Wind Scroll -->
|
<skill id="27615" level="1" /> <!-- Maphr's Wind Scroll -->
|
||||||
|
@@ -610,7 +610,7 @@
|
|||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="18646" level="1" /> <!-- Freya's Scroll of Storm -->
|
<skill id="18646" level="1" /> <!-- Freya's Scroll of Storm -->
|
||||||
|
@@ -192,7 +192,7 @@
|
|||||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||||
<xs:attribute name="pkCount" type="xs:int" />
|
<xs:attribute name="pkCount" type="xs:int" />
|
||||||
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
||||||
<xs:attribute name="minimumVitalityPoints" type="xs:int" />
|
<xs:attribute name="MinimumVitalityPoints" type="xs:int" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:complexType name="andType">
|
<xs:complexType name="andType">
|
||||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
@@ -896,6 +896,12 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case "minimumvitalitypoints":
|
||||||
|
{
|
||||||
|
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
||||||
|
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1091,12 +1097,6 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "minimumvitalitypoints":
|
|
||||||
{
|
|
||||||
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
|
||||||
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1510,7 +1510,7 @@
|
|||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="27615" level="1" /> <!-- Maphr's Wind Scroll -->
|
<skill id="27615" level="1" /> <!-- Maphr's Wind Scroll -->
|
||||||
|
@@ -610,7 +610,7 @@
|
|||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="18646" level="1" /> <!-- Freya's Scroll of Storm -->
|
<skill id="18646" level="1" /> <!-- Freya's Scroll of Storm -->
|
||||||
|
@@ -1201,7 +1201,7 @@
|
|||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="27629" level="1" /> <!-- Freya's Scroll of Storm -->
|
<skill id="27629" level="1" /> <!-- Freya's Scroll of Storm -->
|
||||||
|
@@ -199,7 +199,7 @@
|
|||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="18634" level="1" /> <!-- Duo - Freya's Wind -->
|
<skill id="18634" level="1" /> <!-- Duo - Freya's Wind -->
|
||||||
|
@@ -192,7 +192,7 @@
|
|||||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||||
<xs:attribute name="pkCount" type="xs:int" />
|
<xs:attribute name="pkCount" type="xs:int" />
|
||||||
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
||||||
<xs:attribute name="minimumVitalityPoints" type="xs:int" />
|
<xs:attribute name="MinimumVitalityPoints" type="xs:int" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:complexType name="andType">
|
<xs:complexType name="andType">
|
||||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
@@ -896,6 +896,12 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case "minimumvitalitypoints":
|
||||||
|
{
|
||||||
|
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
||||||
|
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1091,12 +1097,6 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "minimumvitalitypoints":
|
|
||||||
{
|
|
||||||
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
|
||||||
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1421,7 +1421,7 @@
|
|||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="27615" level="1" /> <!-- Maphr's Wind Scroll -->
|
<skill id="27615" level="1" /> <!-- Maphr's Wind Scroll -->
|
||||||
|
@@ -691,7 +691,7 @@
|
|||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="18646" level="1" /> <!-- Freya's Scroll of Storm -->
|
<skill id="18646" level="1" /> <!-- Freya's Scroll of Storm -->
|
||||||
|
@@ -1218,7 +1218,7 @@
|
|||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="27629" level="1" /> <!-- Freya's Scroll of Storm -->
|
<skill id="27629" level="1" /> <!-- Freya's Scroll of Storm -->
|
||||||
|
@@ -199,7 +199,7 @@
|
|||||||
<set name="handler" val="ItemSkills" />
|
<set name="handler" val="ItemSkills" />
|
||||||
<set name="immediate_effect" val="true" />
|
<set name="immediate_effect" val="true" />
|
||||||
<cond>
|
<cond>
|
||||||
<player minimumVitalityPoints="35000" />
|
<player MinimumVitalityPoints="35000" />
|
||||||
</cond>
|
</cond>
|
||||||
<skills>
|
<skills>
|
||||||
<skill id="18634" level="1" /> <!-- Duo - Freya's Wind -->
|
<skill id="18634" level="1" /> <!-- Duo - Freya's Wind -->
|
||||||
|
@@ -192,7 +192,7 @@
|
|||||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||||
<xs:attribute name="pkCount" type="xs:int" />
|
<xs:attribute name="pkCount" type="xs:int" />
|
||||||
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
||||||
<xs:attribute name="minimumVitalityPoints" type="xs:int" />
|
<xs:attribute name="MinimumVitalityPoints" type="xs:int" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:complexType name="andType">
|
<xs:complexType name="andType">
|
||||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
@@ -889,6 +889,12 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case "minimumvitalitypoints":
|
||||||
|
{
|
||||||
|
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
||||||
|
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1084,12 +1090,6 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "minimumvitalitypoints":
|
|
||||||
{
|
|
||||||
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
|
||||||
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -192,7 +192,7 @@
|
|||||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||||
<xs:attribute name="pkCount" type="xs:int" />
|
<xs:attribute name="pkCount" type="xs:int" />
|
||||||
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
||||||
<xs:attribute name="minimumVitalityPoints" type="xs:int" />
|
<xs:attribute name="MinimumVitalityPoints" type="xs:int" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:complexType name="andType">
|
<xs:complexType name="andType">
|
||||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
@@ -896,6 +896,12 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case "minimumvitalitypoints":
|
||||||
|
{
|
||||||
|
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
||||||
|
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1091,12 +1097,6 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "minimumvitalitypoints":
|
|
||||||
{
|
|
||||||
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
|
||||||
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -192,7 +192,7 @@
|
|||||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||||
<xs:attribute name="pkCount" type="xs:int" />
|
<xs:attribute name="pkCount" type="xs:int" />
|
||||||
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
||||||
<xs:attribute name="minimumVitalityPoints" type="xs:int" />
|
<xs:attribute name="MinimumVitalityPoints" type="xs:int" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:complexType name="andType">
|
<xs:complexType name="andType">
|
||||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
@@ -896,6 +896,12 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case "minimumvitalitypoints":
|
||||||
|
{
|
||||||
|
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
||||||
|
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1091,12 +1097,6 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "minimumvitalitypoints":
|
|
||||||
{
|
|
||||||
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
|
||||||
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -192,7 +192,7 @@
|
|||||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||||
<xs:attribute name="pkCount" type="xs:int" />
|
<xs:attribute name="pkCount" type="xs:int" />
|
||||||
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
<xs:attribute name="vehicleMounted" type="xs:boolean" />
|
||||||
<xs:attribute name="minimumVitalityPoints" type="xs:int" />
|
<xs:attribute name="MinimumVitalityPoints" type="xs:int" />
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
<xs:complexType name="andType">
|
<xs:complexType name="andType">
|
||||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||||
|
@@ -896,6 +896,12 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case "minimumvitalitypoints":
|
||||||
|
{
|
||||||
|
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
||||||
|
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1091,12 +1097,6 @@ public abstract class DocumentBase
|
|||||||
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
cond = joinAnd(cond, new ConditionTargetCheckCrtEffect(Boolean.parseBoolean(a.getNodeValue())));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "minimumvitalitypoints":
|
|
||||||
{
|
|
||||||
final int count = Integer.decode(getValue(a.getNodeValue(), null));
|
|
||||||
cond = joinAnd(cond, new ConditionMinimumVitalityPoints(count));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user