-
Notifications
You must be signed in to change notification settings - Fork 143
Description
[17:49:32] [Render thread/ERROR]: Could not execute tick method net.createmod.catnip.client.events.ClientEvents.clientTick() for mod createaddition
java.lang.IllegalStateException: Cannot get config value before config is loaded
at com.simibubi.create.foundation.config.ConfigBase$CValue.get(ConfigBase.java:127) ~[create-1.21.1-6.0.4.jar!/:6.0.4]
at com.mrh0.createaddition.sound.CASoundScapes.tick(CASoundScapes.java:74) ~[createaddition-1.4.2.jar!/:1.4.2]
been trying to fix this but i can't figue this out
i looked to AI for help but id rather have help from you all
The new crash is NOT caused by Ponder anymore.
✅ You successfully disabled Ponder.
❗ But the game still crashes because Create Crafts & Additions (createaddition) itself tries to access a config value too early, independent of Ponder now.
Here’s the proof from your log:
lua
Copy
Edit
[17:49:32] [Render thread/ERROR]: Could not execute tick method net.createmod.catnip.client.events.ClientEvents.clientTick() for mod createaddition
java.lang.IllegalStateException: Cannot get config value before config is loaded
at com.simibubi.create.foundation.config.ConfigBase$CValue.get(ConfigBase.java:127) ~[create-1.21.1-6.0.4.jar!/:6.0.4]
at com.mrh0.createaddition.sound.CASoundScapes.tick(CASoundScapes.java:74) ~[createaddition-1.4.2.jar!/:1.4.2]
🔎 Key observations:
The crash now comes from Create's config system, not Ponder anymore.
createaddition asks Create’s ConfigBase$CValue.get().
Create throws "Cannot get config value before config is loaded."
Ponder is no longer mentioned in the stack trace at all.