mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Renown - Fixed name of active status to be renowned.
This commit is contained in:
parent
c1afa57485
commit
6f9317246b
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue