2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2017-06-11 20:13:59 +00: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
|
2020-11-12 04:58:42 +00:00
|
|
|
index 7f22cdc26d26d6d937506f901a8a0ed1d0a9f780..295b27d122d84d6b1147aaedc9bbfb0f278e1cba 100644
|
2017-06-11 20:13:59 +00:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-11-12 04:58:42 +00:00
|
|
|
@@ -330,4 +330,10 @@ public class PaperWorldConfig {
|
2017-06-11 20:13:59 +00: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
|
2020-11-12 04:58:42 +00:00
|
|
|
index 8d7b77e01c5031953ab3a4811c8397503b52a0e3..7b9188a33c079155a7ff5b0e5de854550324f0f1 100644
|
2017-06-11 20:13:59 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityCreeper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityCreeper.java
|
2020-06-25 13:11:48 +00:00
|
|
|
@@ -226,7 +226,7 @@ public class EntityCreeper extends EntityMonster {
|
2018-12-17 05:18:06 +00:00
|
|
|
private void createEffectCloud() {
|
2019-01-01 03:15:55 +00:00
|
|
|
Collection<MobEffect> collection = this.getEffects();
|
2017-06-11 20:13:59 +00:00
|
|
|
|
|
|
|
- if (!collection.isEmpty()) {
|
|
|
|
+ if (!collection.isEmpty() && !world.paperConfig.disableCreeperLingeringEffect) { // Paper
|
2019-12-11 23:43:22 +00:00
|
|
|
EntityAreaEffectCloud entityareaeffectcloud = new EntityAreaEffectCloud(this.world, this.locX(), this.locY(), this.locZ());
|
2017-06-11 20:13:59 +00:00
|
|
|
|
2017-07-23 01:16:06 +00:00
|
|
|
entityareaeffectcloud.setSource(this); // CraftBukkit
|