Archiviert
13
0

Update EnumWrappers with new constants

Dieser Commit ist enthalten in:
Dan Mulloy 2014-11-29 21:24:27 -05:00
Ursprung dfc1808aca
Commit 3ac9793553

Datei anzeigen

@ -37,7 +37,8 @@ public abstract class EnumWrappers {
public enum EntityUseAction {
INTERACT,
ATTACK;
ATTACK,
INTERACT_AT;
}
/**
@ -47,10 +48,16 @@ public abstract class EnumWrappers {
* @author Kristian
*/
public enum NativeGameMode {
NONE,
NOT_SET,
SURVIVAL,
CREATIVE,
ADVENTURE;
ADVENTURE,
SPECTATOR,
/**
* @deprecated Replaced by NOT_SET
*/
NONE;
}
private static Class<?> PROTOCOL_CLASS = null;