From 6f9317246bf7c8b698ea9ef346f259e501aab9bd Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 7 Jul 2015 12:10:02 +0200 Subject: [PATCH] * Renown - Fixed name of active status to be renowned. --- Mage/src/mage/abilities/keyword/RenownAbility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/keyword/RenownAbility.java b/Mage/src/mage/abilities/keyword/RenownAbility.java index f136de8ca96..81fac74c52f 100644 --- a/Mage/src/mage/abilities/keyword/RenownAbility.java +++ b/Mage/src/mage/abilities/keyword/RenownAbility.java @@ -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) {