2019-07-20 06:01:24 +02:00
|
|
|
From e8c7fda052854a3c98b1a29eff68f280e5e3e79e 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
|
2019-07-20 06:01:24 +02:00
|
|
|
index 54d6799442..4d0d4cbe4e 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
|
2019-07-03 22:44:07 +02:00
|
|
|
@@ -327,4 +327,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-07-20 06:01:24 +02:00
|
|
|
index 53b1e2ac03..100a1a10c9 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
|
2019-07-05 04:13:38 +02:00
|
|
|
@@ -226,7 +226,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-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2017-06-11 22:13:59 +02:00
|
|
|
|