Adds minecraft server ram sizes up to 24 gigabytes

This commit is contained in:
Kristian Knarvik 2022-02-10 01:46:25 +01:00
parent ee99312a12
commit c83b5a2edd
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ public class ServerHandler {
* Available ram sizes. For ServerLauncherGUI combo
*/
private static final String[] ramList = {"512M", "1G", "2G", "3G", "4G", "5G", "6G", "7G", "8G", "9G", "10G",
"11G", "12G", "13G", "14G", "15G", "16G"};
"11G", "12G", "13G", "14G", "15G", "16G", "17G", "18G", "19G", "20G", "21G", "22G", "23G", "24G"};
private static boolean stoppingServers = false;
private static final ServerLauncherGUI gui = Main.getController().getGUI();