mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
CountersPutEffect add more reasons to skip the try
This commit is contained in:
@@ -479,7 +479,8 @@ public class CountersPutEffect extends SpellAbilityEffect {
|
||||
} else {
|
||||
CounterType counterType = null;
|
||||
if (!sa.hasParam("EachExistingCounter") && !sa.hasParam("EachFromSource")
|
||||
&& !sa.hasParam("CounterTypePerDefined")) {
|
||||
&& !sa.hasParam("UniqueType") && !sa.hasParam("CounterTypePerDefined")
|
||||
&& !sa.hasParam("CounterTypes") && !sa.hasParam("ChooseDifferent")) {
|
||||
try {
|
||||
List<CounterType> choices = Lists.newArrayList();
|
||||
for (String s : sa.getParam("CounterType").split(",")) {
|
||||
|
||||
Reference in New Issue
Block a user