Fixed MinimumVitalityPoints wrong letter case.
This commit is contained in:
@@ -192,7 +192,7 @@
|
||||
<xs:attribute name="categoryType" type="xs:normalizedString" />
|
||||
<xs:attribute name="pkCount" type="xs:int" />
|
||||
<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 name="andType">
|
||||
<xs:choice maxOccurs="unbounded" minOccurs="0">
|
||||
|
@@ -896,6 +896,12 @@ public abstract class DocumentBase
|
||||
cond = joinAnd(cond, new ConditionPlayerInInstance(Boolean.parseBoolean(a.getNodeValue())));
|
||||
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())));
|
||||
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