Skip to content

v0.2.1-dev

Pre-release
Pre-release

Choose a tag to compare

@JackOtsig JackOtsig released this 10 May 23:16
· 2 commits to main since this release

Pre-release adding a user-editable config file.

Config (new)

Three settings at <minecraft>/config/blockorigin.json. Auto-written with defaults on first launch; parse errors fall back to defaults without crashing the mod.

{
  "showJadeTooltip": true,
  "autoPromptOnFirstLoad": true,
  "chunksPerTick": 4
}
  • showJadeTooltip (bool) — server-side gate for the Jade hover line. When false, the IServerDataProvider skips writing tooltip NBT entirely, so the Origin: ... line never appears regardless of Jade's own client-side toggle.
  • autoPromptOnFirstLoad (bool) — suppress the first-join chat prompt. Server admins running fresh worlds for many players will want this off.
  • chunksPerTick (int, 1–64) — how many chunks the bulk backfill processes per server tick. Read once when a task starts (next /blockorigin backfill invocation), so live edits take effect on the next run.

Missing keys fall back to defaults on parse (forward-compatible). Extra keys are ignored.

Requirements unchanged

  • Minecraft 1.21.11, Fabric Loader >= 0.19.2, Fabric API, Java 21
  • Optional: Jade 21.1.1+fabric