
ModsJava
Nicos Graves
I don't know my version or loader
Open the Minecraft launcher and look at the profile you play on — it names both, like fabric-loader-1.21.4. The version also shows in the bottom-right corner of the game's main menu.
No loader in the profile name? Then it's plain Minecraft, and these mods won't run — you need Fabric or NeoForge installed first.

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
- Trinkets Minecraft >1.17
- YYZ's Backpack Mod >1.2.1.0, Minecraft 1.19.X or [1.20, 1.20.4]
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;
}
}
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft versions listed: 1.19, 1.19.1, 1.19.2
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Modrinth — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
Verified by MCModsHub
- Ships as nicosgraves-1.3.0.0-1.19.jar — drop this file into the mods folder
- Download size: 32 KB
- Download link checked 30 Aug 2026 — working
These come from our own check of the pack file, not from the source page.

