Merge pull request #187 from magnusulf/patch-2

Support for gamemode numbers
This commit is contained in:
Olof Larsson 2014-11-25 16:37:06 +01:00
commit 9bcdcc3120

View File

@ -33,15 +33,15 @@ public class ARGameMode extends ARAbstractSelect<GameMode>
arg = arg.toLowerCase();
if (arg.startsWith("s"))
if (arg.startsWith("s") || arg.equals("0"))
{
ret = GameMode.SURVIVAL;
}
else if (arg.startsWith("c"))
else if (arg.startsWith("c") || arg.equals("1"))
{
ret = GameMode.CREATIVE;
}
else if (arg.startsWith("a"))
else if (arg.startsWith("a") || arg.equals("2"))
{
ret = GameMode.ADVENTURE;
}