promotional bannermobile promotional banner

Goety

A comprehensive magic mod featuring spellcasting, summonable servants, mystical structures, and the ability to transform into a powerful Lich. Ported to NeoForge 1.21.1.

File Details

goety-3.0.7-neoforge-1.21.1.jar

  • R
  • Mar 1, 2026
  • 70.00 MB
  • 430
  • 1.21.1
  • NeoForge

File Name

goety-3.0.7-neoforge-1.21.1.jar

Supported Versions

  • 1.21.1

Curse Maven Snippet

NeoForge

implementation "curse.maven:goety-neoforge-1465175:7695301"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Version 3.0.7

Bug Fixes

Block Drop Fixes

  • Fixed Haunted Glass not dropping items: Haunted Glass blocks now properly drop themselves when broken by players. The block now explicitly handles item drops using popResource to ensure items are spawned correctly.

  • Fixed missing item drops for other blocks: Added explicit drop handling for several blocks that were potentially missing item drops:

    • Jade Light: Wall-mounted light blocks now properly drop items when broken.
    • Pine Lantern: Wall-mounted lantern blocks now properly drop items when broken.
    • Dungeon Torches (Iron and Gold): Torch blocks now properly drop items when broken.

BlockEntity Fixes

  • Fixed crash when encoding empty ItemStack in Cursed Cage: The CursedCageBlockEntity was attempting to encode empty ItemStacks to NBT, causing crashes. Added a check to only encode non-empty item stacks.

Files Changed

  • src/main/java/za/co/infernos/goety/common/blocks/HauntedGlassBlock.java - Added playerDestroy override with explicit item drop.
  • src/main/java/za/co/infernos/goety/common/blocks/JadeLightBlock.java - Added playerDestroy override with explicit item drop.
  • src/main/java/za/co/infernos/goety/common/blocks/PineLanternBlock.java - Added playerDestroy override with explicit item drop.
  • src/main/java/za/co/infernos/goety/common/blocks/DungeonTorchBlock.java - Added playerDestroy override with explicit item drop.
  • src/main/java/za/co/infernos/goety/common/blocks/entities/CursedCageBlockEntity.java - Added check to prevent encoding empty ItemStacks.