Support for gamemode numbers
Adding the gamemodes numbers as a way to gather the gamemode.
This commit is contained in:
parent
cb1a9c4a58
commit
438f251b00
@ -33,15 +33,15 @@ public class ARGameMode extends ARAbstractSelect<GameMode>
|
|||||||
|
|
||||||
arg = arg.toLowerCase();
|
arg = arg.toLowerCase();
|
||||||
|
|
||||||
if (arg.startsWith("s"))
|
if (arg.startsWith("s") || arg.equals("0"))
|
||||||
{
|
{
|
||||||
ret = GameMode.SURVIVAL;
|
ret = GameMode.SURVIVAL;
|
||||||
}
|
}
|
||||||
else if (arg.startsWith("c"))
|
else if (arg.startsWith("c") || arg.equals("1"))
|
||||||
{
|
{
|
||||||
ret = GameMode.CREATIVE;
|
ret = GameMode.CREATIVE;
|
||||||
}
|
}
|
||||||
else if (arg.startsWith("a"))
|
else if (arg.startsWith("a") || arg.equals("2"))
|
||||||
{
|
{
|
||||||
ret = GameMode.ADVENTURE;
|
ret = GameMode.ADVENTURE;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user