Add -w/-world arg to client

This commit is contained in:
Dark98
2021-11-23 01:15:32 +00:00
parent bdd5297a94
commit 8a10201637
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -45,6 +45,10 @@ public final class Main {
case "-password":
game.myPassword = args[++i];
break;
case "-w":
case "-world":
ClientSettings.SERVER_WORLD = Integer.parseInt(args[++i]);
break;
}
}
}