diff options
Diffstat (limited to 'patches/unapplied/server/0130-provide-a-configurable-option-to-disable-creeper-lin.patch')
-rw-r--r-- | patches/unapplied/server/0130-provide-a-configurable-option-to-disable-creeper-lin.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/patches/unapplied/server/0130-provide-a-configurable-option-to-disable-creeper-lin.patch b/patches/unapplied/server/0130-provide-a-configurable-option-to-disable-creeper-lin.patch new file mode 100644 index 0000000000..c55f4a428d --- /dev/null +++ b/patches/unapplied/server/0130-provide-a-configurable-option-to-disable-creeper-lin.patch @@ -0,0 +1,20 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Shane Freeder <[email protected]> +Date: Sun, 11 Jun 2017 21:01:18 +0100 +Subject: [PATCH] provide a configurable option to disable creeper lingering + effect spawns + + +diff --git a/src/main/java/net/minecraft/world/entity/monster/Creeper.java b/src/main/java/net/minecraft/world/entity/monster/Creeper.java +index 71ea942d663a15a45c97b9b6d5c7519ec5a828d7..31405c3a95e8e8217a6efede1e4599c14583081f 100644 +--- a/src/main/java/net/minecraft/world/entity/monster/Creeper.java ++++ b/src/main/java/net/minecraft/world/entity/monster/Creeper.java +@@ -287,7 +287,7 @@ public class Creeper extends Monster { + private void spawnLingeringCloud() { + Collection<MobEffectInstance> collection = this.getActiveEffects(); + +- if (!collection.isEmpty()) { ++ if (!collection.isEmpty() && !this.level().paperConfig().entities.behavior.disableCreeperLingeringEffect) { // Paper - Option to disable creeper lingering effect + AreaEffectCloud entityareaeffectcloud = new AreaEffectCloud(this.level(), this.getX(), this.getY(), this.getZ()); + + entityareaeffectcloud.setOwner(this); // CraftBukkit |