mirror of
https://github.com/correl/mage.git
synced 2025-03-16 09:16:26 -09: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) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||||
if (permanent != null && source instanceof RenownAbility) {
|
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();
|
int renownValue = ((RenownAbility) source).getRenownValue();
|
||||||
// handle renown = X
|
// handle renown = X
|
||||||
if (renownValue == Integer.MAX_VALUE) {
|
if (renownValue == Integer.MAX_VALUE) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue