parent
ba3a1e4d9c
commit
16f72e1c95
|
@ -45,6 +45,9 @@ public abstract class AbstractRunTask extends JavaExec {
|
||||||
super();
|
super();
|
||||||
setGroup("fabric");
|
setGroup("fabric");
|
||||||
this.configProvider = config;
|
this.configProvider = config;
|
||||||
|
|
||||||
|
classpath(getProject().getConfigurations().getByName("runtimeClasspath"));
|
||||||
|
classpath(this.getProject().getExtensions().getByType(LoomGradleExtension.class).getUnmappedModCollection());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -53,9 +56,6 @@ public abstract class AbstractRunTask extends JavaExec {
|
||||||
config = configProvider.apply(getProject());
|
config = configProvider.apply(getProject());
|
||||||
}
|
}
|
||||||
|
|
||||||
classpath(getProject().getConfigurations().getByName("runtimeClasspath"));
|
|
||||||
classpath(this.getProject().getExtensions().getByType(LoomGradleExtension.class).getUnmappedModCollection());
|
|
||||||
|
|
||||||
List<String> argsSplit = new ArrayList<>();
|
List<String> argsSplit = new ArrayList<>();
|
||||||
String[] args = config.programArgs.split(" ");
|
String[] args = config.programArgs.split(" ");
|
||||||
int partPos = -1;
|
int partPos = -1;
|
||||||
|
|
Loading…
Reference in New Issue