GameAction: fix deathtouch with wither

This commit is contained in:
Hans Mackowiak
2021-08-07 19:16:33 +02:00
parent 88a94fb137
commit 15d28ed5ce

View File

@@ -1229,7 +1229,7 @@ public class GameAction {
}
// Rule 704.5g - Destroy due to lethal damage
// Rule 704.5h - Destroy due to deathtouch
else if (c.getDamage() > 0 && (c.getLethal() <= c.getDamage() || c.hasBeenDealtDeathtouchDamage())) {
else if (c.hasBeenDealtDeathtouchDamage() || (c.getDamage() > 0 && c.getLethal() <= c.getDamage())) {
if (desCreats == null) {
desCreats = new CardCollection();
}