File Details
boct-unofficial-mod-1.0.2.jar
- R
- May 5, 2026
- 630.19 KB
- 24
- 1.21.1
- Fabric
File Name
boct-unofficial-mod-1.0.2.jar
Supported Versions
- 1.21.1
Curse Maven Snippet
1.0.2
A pure-fix release: dedicated-server crashes, log spam, and a bogus "wrong version" warning. No save-format or behavioural changes.
Fixes
- Dedicated server crash on startup (
NoClassDefFoundError: net/minecraft/class_437).VoiceWandItem.use()directly referenced the client-onlyVoiceMenuScreen, so the bytecode verifier tried to resolveScreenwhile loading the item class on the server. The client-sidesetScreencall now goes through a@Environment(CLIENT)helper, so the server never sees a client type. Display entity Not a stringlog spam from seat labels (one error per seat on every spawn — twelve per startup with the default map). VanillaTextDisplayEntitydecodes thealignmentNBT field unconditionally, with nocontains()guard, so an absent field makes the codec log a "Not a string" warning. Seat labels now shipalignment: "center"explicitly.- "Wrong version" warning for Simple Voice Chat 2.6.16 and newer.
SVC publishes its Fabric version as
1.21.1-2.6.16, which Fabric Loader compares lexicographically against the old>=2.5.0recommend and (incorrectly) rejects. The recommend is now>=1.21.1-2.5.0, which compares correctly. Cosmetic — SVC still loaded fine, the warning was just noise.