mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
Fixed another bug of renown.
This commit is contained in:
parent
b2ed48da87
commit
a4f76a1fb8
2 changed files with 3 additions and 2 deletions
|
@ -172,9 +172,9 @@ public class RenownTest extends CardTestPlayerBase {
|
|||
assertLife(playerA, 20);
|
||||
assertLife(playerB, 6);
|
||||
|
||||
assertPowerToughness(playerA, "Rhox Maulers", 4, 4);
|
||||
assertPowerToughness(playerA, "Rhox Maulers", 6, 6); // renown again in turn 7 after the attack
|
||||
Permanent rhoxMaulers = getPermanent("Rhox Maulers", playerA);
|
||||
Assert.assertEquals("may not be renown", false, rhoxMaulers.isRenown());
|
||||
Assert.assertEquals("may not be renown", true, rhoxMaulers.isRenown());
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -176,6 +176,7 @@ public abstract class PermanentImpl extends CardImpl implements Permanent {
|
|||
this.maxBlockedBy = permanent.maxBlockedBy;
|
||||
this.transformed = permanent.transformed;
|
||||
this.monstrous = permanent.monstrous;
|
||||
this.renown = permanent.renown;
|
||||
this.pairedCard = permanent.pairedCard;
|
||||
this.timesLoyaltyUsed = permanent.timesLoyaltyUsed;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue