Skip to content

Commit

Permalink
NG deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
UpcraftLP committed Aug 18, 2024
1 parent 5f19864 commit 25c9ad9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions NeoForge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,20 +84,20 @@ runs {

client {
if (rootProject.hasProperty('mc_uuid')) {
programArguments.addAll("--uuid", rootProject.mc_uuid)
arguments.addAll("--uuid", rootProject.mc_uuid)
}

if (rootProject.hasProperty('mc_username')) {
programArguments.addAll("--username", rootProject.mc_username)
arguments.addAll("--username", rootProject.mc_username)
}
}

server {
programArgument '--nogui'
arguments.add('--nogui')
}

data {
programArguments.addAll('--mod', mod_id, '--all', '--output', file('src/generated/resources/').absolutePath, '--existing', file('src/main/resources/').absolutePath)
arguments.addAll('--mod', mod_id, '--all', '--output', file('src/generated/resources/').absolutePath, '--existing', file('src/main/resources/').absolutePath)
}
}

Expand Down

0 comments on commit 25c9ad9

Please sign in to comment.