We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e55f156 commit 6777777Copy full SHA for 6777777
1 file changed
src/main/java/net/minecraft/launchwrapper/Launch.java
@@ -104,9 +104,8 @@ private List<String> getArgs() {
104
configCopy.gameDir.set(null);
105
configCopy.assetsDir.set(null);
106
configCopy.version.set(null);
107
- for (Map.Entry<String, String> entry : configCopy.getArgsAsMap().entrySet()) {
108
- args.add("--" + entry.getKey());
109
- args.add(entry.getValue());
+ for (String s : configCopy.getArgs()) {
+ args.add(s);
110
}
111
return args;
112
0 commit comments