mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Additional tweak for ExploreEffect stack description.
This commit is contained in:
@@ -35,9 +35,9 @@ public class ExploreEffect extends SpellAbilityEffect {
|
||||
}
|
||||
|
||||
String explrs = TextUtil.join(tgtNames, ",");
|
||||
String explrVerb = tgtNames.size() > 1 ? " explore." : " explores.";
|
||||
String explrVerb = tgtNames.size() > 1 ? "explore." : "explores.";
|
||||
|
||||
return (explrs.isEmpty() ? host.getName() : explrs) + explrVerb;
|
||||
return TextUtil.concatWithSpace(explrs.isEmpty() ? host.getName() : explrs, explrVerb);
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
||||
Reference in New Issue
Block a user