mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Fix for abMakeToken that caused non-Creatures to be affected by summoning sickness. (Mobilization couldn't be activated on same turn it was cast)
This commit is contained in:
@@ -4132,8 +4132,6 @@ public class CardFactory implements NewConstants {
|
|||||||
|
|
||||||
String[] tmpCost = tmp.split(" ", 2);
|
String[] tmpCost = tmp.split(" ", 2);
|
||||||
|
|
||||||
int inc = 0;
|
|
||||||
|
|
||||||
final Target abTgt;
|
final Target abTgt;
|
||||||
if (tmpCost[0].equals(""))
|
if (tmpCost[0].equals(""))
|
||||||
abTgt = null;
|
abTgt = null;
|
||||||
@@ -5662,7 +5660,7 @@ public class CardFactory implements NewConstants {
|
|||||||
@Override
|
@Override
|
||||||
public boolean canPlay(){
|
public boolean canPlay(){
|
||||||
Cost_Payment pay = new Cost_Payment(abCost, this);
|
Cost_Payment pay = new Cost_Payment(abCost, this);
|
||||||
return !card.hasSickness() && (pay.canPayAdditionalCosts() && CardFactoryUtil.canUseAbility(card) && super.canPlay());
|
return !card.isSick() && (pay.canPayAdditionalCosts() && CardFactoryUtil.canUseAbility(card) && super.canPlay());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user