Mineuniverse
Log in Register
Mods

Nicos Graves

A grave mod so you don't lose your stuff
by Nico_44
Download Claim this project
4,324 downloads
0 likes
Updated Jul 6, 2026
0 hypes
Utility & QoL

Created for Remnants SMP Available on Github Issue Tracker on GitHub

Showcase

Is the chance of losing all your items in a lava pit too punishing for you?

Generel Info

  • The graves can be toggled with the gamerule nicos_graves:spawn_player_graves.
  • The accessibility of the grave can be changed with nicos_graves:grave_access

Compatibility

Known Bugs

There is a bug where when you update the mod from 1.21.9 to 1.21.10 all the graves in the world will have a really long named displayed. This bug only occurs if you update the minecraft version.

Developer/Modpack Info

To make an item soulbound, essentially making the item be kept on death, the item can be added to the tag data/nicos_graves/tags/items/soulbound.json.

{
  "replace": false,
  "values": [
    "mod_id:my_cool_item"
  ]
}

Alternatively the item class can implement the interface SoulboundItem, and override the isRetained method.

package you.your_mod.items;

import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import nazario.nicosgraves.api.SoulboundItem;

public class MyCoolItem extends Item implements SoulboundItem {

    public MyCoolItem(Settings settings) {
        super(settings);
    }

    @Override
    public boolean isRetained(ItemStack stack, PlayerEntity player, World world) {
        return true;
    }
}
nicosgraves-1.3.0.0-1.19.4.jar
MC Client, 1.19.4, Fabric, Server, Quilt
Release 2025-11-29 Get

More from Nico_44

Biomes O' Bark
56,530
Liby
5,026
TreeBark+
433,807
TreeBark+ [FABRIC]
371
LC Utility
257
Grass Seeds +
1,294

You Might Also Like

Liberty's Villagers
Quality of Life and AI improvements for Villagers
9,968,428
No More Pop-ups
A Minecraft mod to remove in-game pop-ups
996,708
BetterRandomSourceConcurrencyCrash
Improved logging of crashes caused by mods accessing RandomSources from the wrong thread
99,371
Exit Confirmation
Often accidentally closed Minecraft? This mod might help!
99,067
NoDynamicFps
Adds an option to disable Vanilla's Dynamic FPS implementation
99,004
Immersive Crafting
Adds crafting recipes to immersive portals
9,998