t2pellet / strawgolem

Adds a cute straw golem to farm for you!
https://www.curseforge.com/minecraft/mc-mods/straw-golem-reborn
GNU Affero General Public License v3.0
16 stars 17 forks source link

TLib Forge Startup Crash #140

Closed SugarDaddii closed 4 months ago

SugarDaddii commented 1 year ago

https://pastebin.com/yAZ9y6xS

burghenby commented 7 months ago

Confirming the issue (seen below) but was able to load mod and have it function in-game with beta.4 from Curseforge.

image

RainbowPangolin commented 6 months ago

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.

RainbowPangolin commented 6 months ago

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"

t2pellet commented 5 months ago

updated to be "AFTER" in mods.toml for newest release 2.1.0-alpha.

lmk if this fixes it!