* Renown - Fixed name of active status to be renowned.

This commit is contained in:
LevelX2 2015-07-07 12:10:02 +02:00
parent c1afa57485
commit 6f9317246b

View file

@ -83,7 +83,7 @@ class BecomeRenownSourceEffect extends OneShotEffect {
public boolean apply(Game game, Ability source) {
Permanent permanent = game.getPermanent(source.getSourceId());
if (permanent != null && source instanceof RenownAbility) {
game.informPlayers(permanent.getLogName() + " is now renown");
game.informPlayers(permanent.getLogName() + " is now renowned");
int renownValue = ((RenownAbility) source).getRenownValue();
// handle renown = X
if (renownValue == Integer.MAX_VALUE) {