Updated some things

Based on Greelan's review, I've updated the following:
1. Removed unnecessary ports
2. Clarified Max Heap needs "m" at the end
3. Added "" around startup args that were manually inserted
This commit is contained in:
James Manker
2022-02-13 14:23:18 -06:00
parent 829c1e5614
commit 47f83ab12d
2 changed files with 47 additions and 0 deletions

View File

@@ -175,7 +175,11 @@
{
"DisplayName": "Memory Limit",
"Category": "Server Settings",
<<<<<<< Updated upstream
"Description": "Java's maximum heap size",
=======
"Description": "Java's maximum heap size (Must include ####m at the end)",
>>>>>>> Stashed changes
"Keywords": "maximum,memory,limit",
"FieldName": "MaxHeapSize",
"InputType": "text",
@@ -195,5 +199,36 @@
"ParamFieldName": "VMParams.JvmParam0",
"IncludeInCommandLine": false,
"DefaultValue": "-XX:+AggressiveOpts",
<<<<<<< Updated upstream
=======
},
{
"DisplayName": "Override Java Location",
"Category": "Server Settings",
"Description": "If you receive \"Failed to load jvm.dll\", you may specify a custom location where the jvm.dll is located. Only change this if you know what you're doing!",
"Keywords": "custom,java,arguments,args,location",
"FieldName": "OverrideJavaRegEntry",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "Runtime.OverrideJavaRegEntry",
"IncludeInCommandLine": false,
"DefaultValue": "false",
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Custom Java Location",
"Category": "Server Settings",
"Description": "If you receive \"Failed to load jvm.dll\", you may specify a custom location where the jvm.dll is located. Only change this if you know what you're doing!",
"Keywords": "custom,java,arguments,args,location",
"FieldName": "JavaPath",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "Runtime.JavaPath",
"IncludeInCommandLine": false,
"DefaultValue": "C:\\Program Files\\Java\\jre1.8.0_321\\bin\\server",
>>>>>>> Stashed changes
}
]