2018-09-26 06:57:59 +02:00
|
|
|
From cafd27b8fff95c34fac1d513e88b6012abf64a04 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-09-26 06:57:59 +02:00
|
|
|
index 3507997fc3..7c2e0ddb77 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-09-26 06:57:59 +02:00
|
|
|
@@ -367,4 +367,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
|
2018-08-26 20:11:49 +02:00
|
|
|
index a1c343d77b..765123e3d2 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-08-26 20:11:49 +02:00
|
|
|
private void dF() {
|
2017-06-11 22:13:59 +02:00
|
|
|
Collection collection = this.getEffects();
|
|
|
|
|
|
|
|
- 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
|
|
|
--
|
2018-09-23 04:48:30 +02:00
|
|
|
2.19.0
|
2017-06-11 22:13:59 +02:00
|
|
|
|