* Ghostly Flicker - Reworked effect code again.

This commit is contained in:
LevelX2 2017-01-14 00:00:42 +01:00
parent 8f059ee71a
commit 94684baf3c
2 changed files with 11 additions and 1 deletions

View file

@ -47,4 +47,7 @@ public enum Zone {
return super.toString();
}
public static boolean isPublicZone(Zone zone) {
return GRAVEYARD.equals(zone) || BATTLEFIELD.equals(zone) || STACK.equals(zone) || EXILED.equals(zone) || COMMAND.equals(zone);
}
}