runelite: disable option parser abbreviations

This commit is contained in:
Adam
2022-03-06 19:39:46 -05:00
parent 64abf450d9
commit 94691fc870

View File

@@ -149,7 +149,7 @@ public class RuneLite
{
Locale.setDefault(Locale.ENGLISH);
final OptionParser parser = new OptionParser();
final OptionParser parser = new OptionParser(false);
parser.accepts("developer-mode", "Enable developer tools");
parser.accepts("debug", "Show extra debugging output");
parser.accepts("safe-mode", "Disables external plugins and the GPU plugin");