hotfix for Android

This commit is contained in:
Northmoc
2021-06-05 06:59:27 -04:00
parent f53e4495de
commit 24c45c7cc2

View File

@@ -461,8 +461,8 @@ public class VAssignCombatDamage extends FDialog {
}
else {
lethalDamage = Math.max(0, source.getLethalDamage());
if (card.getCurrentState().getType().isPlaneswalker()) {
lethalDamage = Integer.valueOf(card.getCurrentState().getLoyalty());
if (source.getCurrentState().getType().isPlaneswalker()) {
lethalDamage = Integer.valueOf(source.getCurrentState().getLoyalty());
} else if (attackerHasDeathtouch) {
lethalDamage = Math.min(lethalDamage, 1);
}