A Simple Bukkit/Spigot Plugin to prevent Creeper from damaging blocks/entities.
-
Download the plugin here.
-
Put the plugin jar file into the
plugins
folder of your server, and restart the server. -
Have a cup of tea ☕ and wait for the server to start~
A config file named config.yml
will be generated in the plugin/HoldBackCreeper
folder the first time your server starts:
# Enable the plugin
enable: true
# Worlds where the damage of creeper explosions will be ignored
# worlds:
# - world
# - world_nether
# - world_the_end
worlds: [ ]
# Entities that ignore the effects of the CREEPER explosions
# Reference: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html
entities:
- PAINTING
- ARMOR_STAND
- LEASH_HITCH
- ITEM_FRAME
- GLOW_ITEM_FRAME
I've made detailed comments in the config file.
However, it's worth noticing that the config field 'entities
' will be applied to all worlds listed in 'worlds
'.
You can refer to the Minecraft Wiki-Entity for more information about the entity types.
There is only one command in this plugin:
/holdbackcreeper reload
for reloading the config file.
holdbackcreeper.reload
💡 Operators will have this permission by default.
Under MIT License.
Thank you for using the plugin.