Fixed MinimumVitalityPoints wrong letter case.
This commit is contained in:
@ -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