2019-03-20 02:46:00 +01:00
|
|
|
From 21f905a2536d1e3dbf5fe9f96a7f9bfebc4ef139 Mon Sep 17 00:00:00 2001
|
2017-06-11 22:13:59 +02:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
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/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-12-13 01:40:29 +01:00
|
|
|
index aefb0ce97..af31030dc 100644
|
2017-06-11 22:13:59 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-12-13 01:40:29 +01:00
|
|
|
@@ -372,4 +372,10 @@ public class PaperWorldConfig {
|
2017-06-11 22:13:59 +02:00
|
|
|
parrotsHangOnBetter = getBoolean("parrots-are-unaffected-by-player-movement", false);
|
|
|
|
log("Parrots are unaffected by player movement: " + parrotsHangOnBetter);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean disableCreeperLingeringEffect;
|
|
|
|
+ private void setDisableCreeperLingeringEffect() {
|
|
|
|
+ disableCreeperLingeringEffect = getBoolean("disable-creeper-lingering-effect", false);
|
|
|
|
+ log("Creeper lingering effect: " + disableCreeperLingeringEffect);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityCreeper.java b/src/main/java/net/minecraft/server/EntityCreeper.java
|
2019-01-01 04:15:55 +01:00
|
|
|
index 81e602d1b..b6af42904 100644
|
2017-06-11 22:13:59 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityCreeper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityCreeper.java
|
2018-07-18 02:08:13 +02:00
|
|
|
@@ -214,7 +214,7 @@ public class EntityCreeper extends EntityMonster {
|
2018-12-17 06:18:06 +01:00
|
|
|
private void createEffectCloud() {
|
2019-01-01 04:15:55 +01:00
|
|
|
Collection<MobEffect> collection = this.getEffects();
|
2017-06-11 22:13:59 +02:00
|
|
|
|
|
|
|
- if (!collection.isEmpty()) {
|
|
|
|
+ if (!collection.isEmpty() && !world.paperConfig.disableCreeperLingeringEffect) { // Paper
|
|
|
|
EntityAreaEffectCloud entityareaeffectcloud = new EntityAreaEffectCloud(this.world, this.locX, this.locY, this.locZ);
|
|
|
|
|
2017-07-23 03:16:06 +02:00
|
|
|
entityareaeffectcloud.setSource(this); // CraftBukkit
|
2017-06-11 22:13:59 +02:00
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2017-06-11 22:13:59 +02:00
|
|
|
|