mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +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 {
|
} else {
|
||||||
CounterType counterType = null;
|
CounterType counterType = null;
|
||||||
if (!sa.hasParam("EachExistingCounter") && !sa.hasParam("EachFromSource")
|
if (!sa.hasParam("EachExistingCounter") && !sa.hasParam("EachFromSource")
|
||||||
&& !sa.hasParam("CounterTypePerDefined")) {
|
&& !sa.hasParam("UniqueType") && !sa.hasParam("CounterTypePerDefined")
|
||||||
|
&& !sa.hasParam("CounterTypes") && !sa.hasParam("ChooseDifferent")) {
|
||||||
try {
|
try {
|
||||||
List<CounterType> choices = Lists.newArrayList();
|
List<CounterType> choices = Lists.newArrayList();
|
||||||
for (String s : sa.getParam("CounterType").split(",")) {
|
for (String s : sa.getParam("CounterType").split(",")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user