Fix ExcludedDestinations logic

This commit is contained in:
Bug Hunter
2021-02-16 16:29:55 +00:00
committed by Michael Kamensky
parent 7a85918b04
commit 64c1f2dec9

View File

@@ -90,7 +90,7 @@ public class TriggerChangesZone extends Trigger {
}
if (hasParam("ExcludedDestinations")) {
if (!ArrayUtils.contains(
if (ArrayUtils.contains(
getParam("ExcludedDestinations").split(","), runParams.get(AbilityKey.Destination)
)) {
return false;