Merge branch 'torgaar' into 'master'

Add Torgaar (DOM)

See merge request core-developers/forge!424
This commit is contained in:
Michael Kamensky
2018-04-18 04:23:00 +00:00
2 changed files with 17 additions and 0 deletions

View File

@@ -552,6 +552,10 @@ public class CardFactoryUtil {
return doXMath(player.getCardsIn(ZoneType.Battlefield).size(), m, source);
}
if (value.contains("StartingLife")) {
return doXMath(player.getStartingLife(), m, source);
}
if (value.contains("LifeTotal")) {
return doXMath(player.getLife(), m, source);
}