fix omega config class loading too early in static block, make modmenu dep transitive

This commit is contained in:
Draylar
2021-12-20 17:41:14 -06:00
parent 2968111445
commit 270db37dba
3 changed files with 15 additions and 4 deletions
+6 -2
View File
@@ -14,8 +14,12 @@ dependencies {
implementation project(":omega-config-base")
// Mod Menu
modRuntimeOnly "com.terraformersmc:modmenu:${project.modmenu_version}"
modCompileOnly "com.terraformersmc:modmenu:${project.modmenu_version}"
modCompileOnly ("com.terraformersmc:modmenu:${project.modmenu_version}") {
transitive(false)
}
modRuntime ("com.terraformersmc:modmenu:${project.modmenu_version}") {
transitive(false)
}
// Cloth Config Lite
include "me.shedaniel.cloth:cloth-config-lite-fabric:2.0.6"