-
Notifications
You must be signed in to change notification settings - Fork 0
Rubric Troubleshooting
Oliver Yasuna edited this page Jul 3, 2026
·
2 revisions
Common problems and where to look. Grows as issues surface.
Nothing curated here yet — file an issue at github.com/oliveryasuna/minecraft-mods/issues so it can be added.
Meanwhile, general debugging pointers:
-
Load error
No FormatAdapter registered for X— the@Config#formaton your class is one the bootstrapConfigIOdoesn't know. See Formats — either switch the format or bootstrap withRubricSerialization.allFormatsIO(). -
AtomicMoveNotSupportedException— filesystem doesn't support atomic rename. Setio.atomicWrites = falseinRubric.toml. See Self-config. -
My config screen button in ModMenu / Catalogue does nothing — likely a mismatch between
@Config#idand your loader mod id (fabric.mod.json#idon Fabric,[[mods]].modIdinMETA-INF/neoforge.mods.tomlon NG). ModMenu / Catalogue only surfaces factories whose key matches a loaded mod. See Frontends. - Server-authoritative value keeps reverting when I edit it — expected. The server owns it. Local edits from the GUI go through a permission gate on the server; if the server denies, the change reverts on the next sync tick. See Sync.
-
File on disk keeps rewriting itself on every launch — means the load produced corrections. Check the log for lines like
[modid] corrected …. See Validation.
Rubric
Reference
Runtime
GUI
Help