Skip to content

v1.0

Latest

Choose a tag to compare

@vihaanvp vihaanvp released this 12 Jun 11:53

BoneToBoneBlock — Changelog

v1.0 — 2026-06-12

Author: vihaanvp

Summary

Initial release of BoneToBoneBlock. Adds two crafting recipes to convert between bones and bone blocks.

Added

  • me.vihaanvp.BoneToBoneBlock
    • Main plugin class (enables/disables recipe registrar).
  • me.vihaanvp.BoneRecipeRegistrar
    • Registers and unregisters crafting recipes:
      • Shaped 3x3: 9 × BONE -> 1 × BONE_BLOCK (NamespacedKey: bones_to_block)
      • Shapeless: 1 × BONE_BLOCK -> 9 × BONE (NamespacedKey: block_to_bones)
    • Removes existing recipes with the same NamespacedKey on register to avoid duplicates on reload.
  • plugin.yml
    • name: BoneToBoneBlock
    • main: me.vihaanvp.BoneToBoneBlock
    • version: 1.0

Behavior / Notes

  • Recipes are registered on plugin enable and removed on disable.
  • Uses explicit NamespacedKeys so reloading the plugin does not leave duplicate recipes.
  • If the server already has equivalent vanilla recipes, this plugin will register its own recipes using the specified keys (effectively re-registering that behavior under plugin keys). If you want to preserve an existing vanilla recipe exactly, the plugin can be updated to detect and skip registration when an equivalent recipe exists.

Compatibility

  • Built against Bukkit/Paper API. Should work on Paper/Spigot builds supporting that API or newer. Adjust api-version in plugin.yml if your server requires a different value.

Installation / Uninstallation notes

  • Installing: drop JAR and enable — recipes appear.
  • Uninstalling: remove JAR and restart server (or disable plugin) — recipes registered by the plugin are removed on disable.