- Fixed Gratuitous Violence.

This commit is contained in:
Sloth
2011-09-30 10:07:34 +00:00
parent 1c818b5b64
commit fd3955d0af

View File

@@ -461,7 +461,7 @@ public abstract class Player extends GameEntity {
restDamage += restDamage; restDamage += restDamage;
} }
if (AllZoneUtil.isCardInPlay("Gratuitous Violence", source.getController())) { if (AllZoneUtil.isCardInPlay("Gratuitous Violence", source.getController()) && source.isCreature()) {
int amount = source.getController().getCardsIn(Zone.Battlefield, "Gratuitous Violence").size(); int amount = source.getController().getCardsIn(Zone.Battlefield, "Gratuitous Violence").size();
for (int i = 0; i < amount; i++) for (int i = 0; i < amount; i++)
restDamage += restDamage; restDamage += restDamage;