2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
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/net/minecraft/world/entity/monster/Creeper.java b/src/main/java/net/minecraft/world/entity/monster/Creeper.java
|
2022-12-07 19:52:24 +01:00
|
|
|
index 93a0d0ab483fd525accc8bf8b9df5bbbd81c644e..c418c0b2fa757f29dfa3c07977093c67416959f5 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/monster/Creeper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/monster/Creeper.java
|
2021-06-12 12:26:21 +02:00
|
|
|
@@ -281,7 +281,7 @@ public class Creeper extends Monster implements PowerableMob {
|
2021-06-11 14:02:28 +02:00
|
|
|
private void spawnLingeringCloud() {
|
|
|
|
Collection<MobEffectInstance> collection = this.getActiveEffects();
|
|
|
|
|
|
|
|
- if (!collection.isEmpty()) {
|
2022-06-09 10:51:45 +02:00
|
|
|
+ if (!collection.isEmpty() && !level.paperConfig().entities.behavior.disableCreeperLingeringEffect) { // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
AreaEffectCloud entityareaeffectcloud = new AreaEffectCloud(this.level, this.getX(), this.getY(), this.getZ());
|
|
|
|
|
|
|
|
entityareaeffectcloud.setOwner(this); // CraftBukkit
|