File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/main/java/net/minecraftforge/gradle/user/patcherUser/forge Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -245,8 +245,7 @@ protected List<String> getClientJvmArgs(ForgeExtension ext)
245245 List <String > out = ext .getResolvedClientJvmArgs ();
246246 if (!Strings .isNullOrEmpty (ext .getCoreMod ()))
247247 {
248- out .add ("-Dfml.coreMods.load" );
249- out .add (ext .getCoreMod ());
248+ out .add ("-Dfml.coreMods.load=" + ext .getCoreMod ());
250249 }
251250 return out ;
252251 }
@@ -257,8 +256,7 @@ protected List<String> getServerJvmArgs(ForgeExtension ext)
257256 List <String > out = ext .getResolvedServerJvmArgs ();
258257 if (!Strings .isNullOrEmpty (ext .getCoreMod ()))
259258 {
260- out .add ("-Dfml.coreMods.load" );
261- out .add (ext .getCoreMod ());
259+ out .add ("-Dfml.coreMods.load=" + ext .getCoreMod ());
262260 }
263261 return out ;
264262 }
You can’t perform that action at this time.
0 commit comments