Mods
Resource Packs
Data Packs
Modpacks
Shaders
Plugins
Mods Resource Packs Data Packs Plugins Shaders Modpacks
Sign in
ModsPluginsData PacksShadersResource PacksModpacks
Sign in
Settings
Creeper Healing

Creeper Healing

A server side, customizable Fabric mod to automatically and naturally heal Creeper explosions (and other kinds of explosions!).

31.7k
86
Adventure
Mobs
Utility
AboutGalleryChangelogVersions

2.1.1

by ArkoSammy12 on May 4, 2025
Download

Changelog

  • Fix crash on startup due to broken creation of map sections.
  • Updated the dependency version for Monkey Utils.

Please make sure to report any issues or make suggestions in the issue tracker.

2.1.0

by ArkoSammy12 on Mar 25, 2025
Download

Changelog

  • Update to Minecraft 1.21.5
  • Version number will from now on not include the Minecraft version, as it will be assumed that the latest version of the mod supports the latest Minecraft version.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21.4+] Creeper Healing - Release v2.0.3

by ArkoSammy12 on Mar 12, 2025
Download

Changelog

  • Fix double blocks like doors or beds not being properly replaced with another double block when using the replace map.
  • Fix redstone dust, repeaters and comparators dropping from explosions even if that explosion is set to not drop items.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21.4+] Creeper Healing - Release v2.0.2

by ArkoSammy12 on Dec 10, 2024
Download
  • Update to 1.21.4
  • Fix bug where attempting to heal double chests would crash the server.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21+] Creeper Healing - Release v2.0.1

by ArkoSammy12 on Oct 15, 2024
Download
  • When attempting to place the corresponding partner of a double chest block, check if that block is already placed before attempting to place it.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21+] Creeper Healing - Release v2.0.0

by ArkoSammy12 on Aug 18, 2024
Download
  • The explosion_sources and explosion_item_drops setting categories have been reworked. The original settings have been replaced by new settings that correspond to Minecraft's own explosion source types. This was done in order to increase compatibility with modded explosions. You will find now find settings that correspond to the following source types: mob, tnt, block, triggered, and other. In addition, both setting categories have a new blacklist setting, where you can add mob identifiers to make explosion source types coming from those mobs to not heal or to not drop items.
  • ExplosionManagers now expose an ID that you can use to emit ExplosionContext instances to. This makes it easier for other mods to register and use new ExplosionManagers to allow support for entirely custom explosions.
  • Miscellaneous API and internal changes.
  • Updated the Fabric Loader and Fabric API dependencies.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21+] Creeper Healing - Release v1.2.2

by ArkoSammy12 on Aug 11, 2024
Download
  • No longer heal nether portal, end portal and end gateway blocks.
  • Include logical client side checks in Explosion.mixin for safety by Aurora.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21] Creeper Healing - Release v1.2.1

by ArkoSammy12 on Aug 1, 2024
Download
  • Fix shulker box blocks not being properly excluded from the mod's features.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21] Creeper Healing - Release v1.2.0

by ArkoSammy12 on Jul 29, 2024
Download
  • Optimized the retrieval of indirectly affected positions, resulting in considerable faster performance, especially noticeable when multiple explosions happen on the same tick.
  • The max recursion depth for obtaining indirectly affected positions is now the same as vanilla's max depth for block updates (512).

Please make sure to report any issues or make suggestions in the issue tracker.

[1.21] Creeper Healing - Release v1.1.0

by ArkoSammy12 on Jul 13, 2024
Download

Warning

This version of the mod will invalidate your current scheduled-creeper.json file, meaning that after updating the mod, any currently stored explosions will be lost.

Changelog

  • Updated to 1.21.
  • Added support for indirect block healing: The mod will now be capable of healing blocks which were indirectly destroyed by explosions. For example, a torch whose support block was destroyed will now be taken into account. A column of signs will now be healed if an explosion destroys one of the supporting sign blocks. The mod will be able to heal indirectly exploded blocks up to a maximum of 100 blocks starting from the supporting block and counting down as it encounters more connected blocks.
  • Block placement particles: A new feature to spawn cloud particles above a block placement has been added. A new configuration setting, called block_placement_particles, has been added to the preferences section of the config file and config commands. This setting is true by default.
  • The mod will now heal both halves of a chest at the same time.
  • Item drops for creeper explosions is now disabled by default: Courtesy of hiisuuii.
  • The mod's logo has been updated: Courtesy of Swanslab.
  • The mod now depends on a new mod library called Monkey Config: The internal configuration system has been migrated to this library. Note that Monkey Config has a dependency on Fabric Language Kotlin.
  • Major internal refactor: To make the mod more extendable and to function as an API for other mods to use to make additions to Creeper Healing.

Please make sure to report any issues or make suggestions in the issue tracker.

[1.20.4] Creeper Healing - Release v1.0.0

by ArkoSammy12 on May 1, 2024
Download

[1.20.5] Creeper Healing - Release v1.0.0

by ArkoSammy12 on May 1, 2024
Download

[1.20] Creeper Healing - Release v1.0.0

by ArkoSammy12 on May 1, 2024
Download

Warning

This version of the mod will invalidate your current scheduled-creeper.json file, meaning that after updating the mod, any currently stored explosions will be lost.

Changelog

This update contains a major rework of the mod's internal configuration system. All of these changes are at the code level and will not change how you currently use the configuration system. Furthermore, the following features and changes have been made:

  • Added three new preference settings:
    • restore_block_nbt: This new setting will save the block's NBT data (such as inventories) and subsequently restore it upon healing. When a block with NBT data is destroyed by an explosion and it is to be healed, the block itself (such as the chest or furnace) will not drop as an item, so as to avoid duplication of the chest. This does not necessarily mean that surrounding blocks won't drop their items when exploded. This option is disabled by default.
    • force_blocks_with_nbt_to_always_heal: This setting makes it so that blocks with NBT data destroyed from explosions that will be healed always heal, regardless of whether this block is mapped to another block in the replace map, or whether there is a block at the position where the block with NBT will try to be healed at. This option should be enabled alongside restore_block_nbt to ensure that inventories of blocks like chests always end up restored. This option is disabled by default.
    • make_falling_blocks_fall: This setting makes it so that blocks affected by gravity do not fall upon being healed, unless triggered by a neighbor update, which can include the healing of blocks adjacent to the gravity affected block.
  • The serialization of explosions will now use compressed JSON instead of regular JSON.
  • Updated the Fabric Loader dependency to 0.15.10.
  • An internal, non user-modifiable list of excluded blocks has been hard-coded into the mod's mechanics to exclude certain blocks from being affected by the mechanics of this mod. As of the release of this update, it only includes Shulker Boxes, This is because shulker boxes always drop their item with the inventory contained within it, making the restoration of Shulker boxes unnecessary. Furthermore, attempting to integrate them proved to be troubling due to their unique behavior regarding the dropping of items when destroyed.
  • Corresponding commands to edit the newly added preference settings have been added.
  • Made it so that, if an explosion cannot be healed, then force all blocks affected by that explosion to drop their items, regardless of the user defined settings.

Please make sure to report any issues or make suggestions in the issue tracker or in the Discord server.

[1.20.4] Creeper Healing - Release v0.1.9

by ArkoSammy12 on Feb 12, 2024
Download

[1.20] Creeper Healing - Release v0.1.9

by ArkoSammy12 on Feb 12, 2024
Download

[1.19.2] Creeper Healing - Release v0.1.9

by ArkoSammy12 on Feb 12, 2024
Download

Warning

This version of the mod will invalidate your current scheduled-explosions.json file, meaning that after updating the mod, any currently stored explosions will be lost.

Changelog

This update includes a major refactor of the mod's code-base, with several minor optimizations.

  • Removed the settings heal_on_flowing_water, heal_on_source_water, heal_on_flowing_lava and heal_on_source_lava. Whether a block can be healed at a location will now act identically to whether a player would be able to place a block at that location. This includes liquids, grass, etc. The goal of removing these options is to simplify the configuration of the mod and make its behavior more consistent with Minecraft's own block placement rules.
  • Unused config setting keys will now be automatically removed.
  • Explosions healed with the daytime healing mode will now react to the usage of the /time add and /time set commands, where they will recalculate their timers based on the remaining ticks until the next morning.
  • Updated Fabric Loader version requirement to 0.15.6.

Please make sure to report any issues or make suggestions in the issue tracker or in the Discord server.

[1.20.3+] Creeper Healing - Release v0.1.8.1

by ArkoSammy12 on Jan 7, 2024
Download
  • Fix crash when attempting to use the mod with Lithium.

Please make sure to report any issues or make suggestions in the issue tracker or in the Discord server.

[1.20.3+] Creeper Healing - Release v0.1.8

by ArkoSammy12 on Dec 8, 2023
Download

This is a straightforward port of the mod to support Minecraft versions 1.20.3 and 1.20.4. The 1.19.4 version is now depracated and will no longer be updated by myself.

Please make sure to report any issues or make suggestions in the issue tracker or in the Discord server.

[1.20.1+] Creeper Healing - Release v0.1.8

by ArkoSammy12 on Nov 3, 2023
Download

[1.19.4] Creeper Healing - Release v0.1.8

by ArkoSammy12 on Nov 3, 2023
Download
1
2
3

90% of ad revenue goes to creators

Support creators and Modrinth ad-free with Modrinth+
Filter

Show all versions

Modrinth is open source.

main@aaf125c

© Rinth, Inc.

Company

TermsPrivacyRulesCareers

Resources

SupportBlogDocsStatus

Interact

Discord X (Twitter) Mastodon Crowdin
Get Modrinth App Settings
NOT AN OFFICIAL MINECRAFT SERVICE. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.