mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
small tweak in AF_Choose
This commit is contained in:
@@ -32,6 +32,7 @@ public class AbilityFactory_Choose {
|
|||||||
return chooseTypeStackDescription(af, this);
|
return chooseTypeStackDescription(af, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public boolean canPlayAI() {
|
public boolean canPlayAI() {
|
||||||
return chooseTypeCanPlayAI(af, this);
|
return chooseTypeCanPlayAI(af, this);
|
||||||
}
|
}
|
||||||
@@ -78,7 +79,7 @@ public class AbilityFactory_Choose {
|
|||||||
private static final long serialVersionUID = 5555184803257696143L;
|
private static final long serialVersionUID = 5555184803257696143L;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getStackDescription(){
|
public String getStackDescription() {
|
||||||
return chooseTypeStackDescription(af, this);
|
return chooseTypeStackDescription(af, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -105,7 +106,7 @@ public class AbilityFactory_Choose {
|
|||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
if (!(sa instanceof Ability_Sub))
|
if (!(sa instanceof Ability_Sub))
|
||||||
sb.append(sa.getSourceCard().getName()).append(" - ");
|
sb.append(sa.getSourceCard()).append(" - ");
|
||||||
else
|
else
|
||||||
sb.append(" ");
|
sb.append(" ");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user