Blood on the Clocktower - Unofficial

An unofficial Minecraft companion mod for running [Blood on the Clocktower](https://bloodontheclocktower.com/) sessions inside Minecraft.

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

Fabric

modImplementation "curse.maven:blood-on-the-clocktower-unofficial-1530198:8041168"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

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-only VoiceMenuScreen, so the bytecode verifier tried to resolve Screen while loading the item class on the server. The client-side setScreen call now goes through a @Environment(CLIENT) helper, so the server never sees a client type.
  • Display entity Not a string log spam from seat labels (one error per seat on every spawn — twelve per startup with the default map). Vanilla TextDisplayEntity decodes the alignment NBT field unconditionally, with no contains() guard, so an absent field makes the codec log a "Not a string" warning. Seat labels now ship alignment: "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.0 recommend 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.