mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
commandzone is public
This commit is contained in:
parent
4aaf73e0d2
commit
7e26a7a141
1 changed files with 9 additions and 1 deletions
|
@ -33,7 +33,15 @@ package mage.constants;
|
|||
*/
|
||||
public enum Zone {
|
||||
|
||||
HAND(false), GRAVEYARD(true), LIBRARY(false), BATTLEFIELD(true), STACK(true), EXILED(true), ALL(false), OUTSIDE(false), COMMAND(false);
|
||||
HAND(false),
|
||||
GRAVEYARD(true),
|
||||
LIBRARY(false),
|
||||
BATTLEFIELD(true),
|
||||
STACK(true),
|
||||
EXILED(true),
|
||||
ALL(false),
|
||||
OUTSIDE(false),
|
||||
COMMAND(true);
|
||||
|
||||
private boolean isPublic;
|
||||
|
||||
|
|
Loading…
Reference in a new issue