Skip to content

Commit

Permalink
Fix settings for Eclipse on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Technici4n committed Nov 11, 2024
1 parent 4b08140 commit c3aee1d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ dependencyResolutionManagement {
}
}

rootProject.name = rootDir.name
if (rootProject.name.toLowerCase() == "neoforge") {
// Solve name clashes between projects/neoforge and the rootProject for Eclipse.
rootProject.name = "NeoForge-Root"
}

include ':base'
project(':base').projectDir = file('projects/base')
Expand Down

0 comments on commit c3aee1d

Please sign in to comment.