TLib Forge Startup Crash
SugarDaddii opened this issue ยท 4 comments
I get the exact same error. Looking through TenzinLibForge.java, it seems like this error happens when register(String id, TLibForgeMod mod)
is called before initialSetup()
runs.
Turns out it's related to the dependency lists in mods.toml.
This block:
[[dependencies.strawgolem]] modId = "tlib" mandatory = true versionRange = "*" ordering = "BEFORE" side = "BOTH"
Should look like:
[[dependencies.strawgolem]] modId = "tlib" mandatory = true versionRange = "*" ordering = "AFTER" side = "BOTH"