Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'eclipse'
id 'idea'
id 'maven-publish'
id 'net.neoforged.moddev' version '1.0.1'
id 'net.neoforged.moddev' version '2.0.72'
id 'com.diffplug.spotless' version '6.25.0'
id 'com.matthewprenger.cursegradle' version '1.4.0'
id "com.modrinth.minotaur" version "2.+"
Expand Down Expand Up @@ -189,7 +189,7 @@ neoForge {
runs {
// applies to all the run configs below
configureEach {
mods = [neoForge.mods.modern_industrialization]
loadedMods = [mods.modern_industrialization]

// Recommended logging data for a userdev environment
// The markers can be added/remove as needed separated by commas.
Expand All @@ -207,7 +207,7 @@ neoForge {
client {
client()
sourceSet = sourceSets.client
mods = [neoForge.mods.modern_industrialization_with_client]
loadedMods = [mods.modern_industrialization_with_client]
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
systemProperty 'forge.enabledGameTestNamespaces', "modern_industrialization"
}
Expand All @@ -229,7 +229,7 @@ neoForge {
data {
data()
sourceSet = sourceSets.client
mods = [neoForge.mods.modern_industrialization_with_client]
loadedMods = [mods.modern_industrialization_with_client]
// example of overriding the workingDirectory set in configureEach above, uncomment if you want to use it
// workingDirectory project.file('run-data')

Expand Down
Loading