mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fixed EntersBattlefieldAbility no rule generation option.
This commit is contained in:
parent
8148c59aee
commit
0840b0b9c9
2 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ public class JaceTheMindSculptor extends CardImpl<JaceTheMindSculptor> {
|
|||
this.expansionSetCode = "WWK";
|
||||
this.subtype.add("Jace");
|
||||
this.color.setBlue(true);
|
||||
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.LOYALTY.createInstance(3)), ""));
|
||||
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.LOYALTY.createInstance(3)), false));
|
||||
|
||||
|
||||
LoyaltyAbility ability1 = new LoyaltyAbility(new JaceTheMindSculptorEffect1(), 2);
|
||||
|
|
|
@ -68,7 +68,7 @@ public class EntersBattlefieldAbility extends StaticAbility<EntersBattlefieldAbi
|
|||
@Override
|
||||
public String getRule() {
|
||||
if (generateRule != null) {
|
||||
if (generateRule = false) {
|
||||
if (!generateRule) {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue