
Punishing Death
The Punishing Death mod is designed for players who want to experience real consequences from dying in Minecraft. By default, 100% of items in the inventory are deleted upon death, but this percentage can be configured according to your preferences.
Configuration
In the configuration file, you can set the percentage of items kept on death in the range from 0 to 100. The default setting is 0%, which means complete loss of all items.
Compatibility
The mod has not been tested with other mods that affect item behavior upon death (such as Gravestones). It is recommended to use only one mod that alters the item drop mechanics after death.
Game Stages Support
The mod supports integration with Game Stages. The percentage of items kept for each game stage can be configured via CraftTweaker.
To use the Game Stages feature, a CraftTweaker script with the following call is required:
mods.PunishingDeath.addStagePercent(String stage_name, int percent_kept);
Examples:
mods.PunishingDeath.addStagePercent("death_10", 10);
mods.PunishingDeath.addStagePercent("keepAllItems", 100);
If the player does not have the corresponding stage unlocked, the value from the configuration file will be used. Percentages set through Game Stages take priority over config settings.