Make Forge run names similar to the Common and Fabric ones.

This commit is contained in:
Tyler Hancock 2021-10-05 23:01:09 -06:00
parent 509dda3840
commit 299a8d52d9
No known key found for this signature in database
GPG Key ID: D10D32949D03E695

View File

@ -28,6 +28,7 @@ minecraft {
client {
workingDirectory project.file('run')
ideaModule "${rootProject.name}.${project.name}.main"
taskName 'Client'
mods {
modClientRun {
source sourceSets.main
@ -39,6 +40,7 @@ minecraft {
server {
workingDirectory project.file('run')
ideaModule "${rootProject.name}.${project.name}.main"
taskName 'Server'
mods {
modServerRun {
source sourceSets.main
@ -51,6 +53,7 @@ minecraft {
workingDirectory project.file('run')
ideaModule "${rootProject.name}.${project.name}.main"
args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
taskName 'Data'
mods {
modDataRun {
source sourceSets.main