Adding writting amount of mana payed for {X} cost

This commit is contained in:
magenoxx 2012-06-12 10:38:39 +04:00
parent f641ffe77b
commit 5be6f78d59
17 changed files with 190 additions and 33 deletions

View file

@ -901,7 +901,8 @@ public class ComputerPlayer<T extends ComputerPlayer<T>> extends PlayerImpl<T> i
return false;
}
cost.setPaid();
game.informPlayers(getName() + " payed " + cost.getPayment().count() + " for " + cost.getText());
cost.setPaid();
return true;
}