2019-08-05 18:35:40 +02:00
|
|
|
From 7714e202d48c4aaed00476736342817ff5ed8484 Mon Sep 17 00:00:00 2001
|
2019-05-28 00:36:06 +02:00
|
|
|
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
|
|
|
Date: Mon, 27 May 2019 17:35:39 -0500
|
|
|
|
Subject: [PATCH] MC-114618 - Fix EntityAreaEffectCloud from going negative
|
|
|
|
size
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java b/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java
|
2019-08-05 18:35:40 +02:00
|
|
|
index 3a8e105336..fe527aba52 100644
|
2019-05-28 00:36:06 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java
|
2019-08-05 18:35:40 +02:00
|
|
|
@@ -175,6 +175,12 @@ public class EntityAreaEffectCloud extends Entity {
|
2019-05-28 00:36:06 +02:00
|
|
|
super.tick();
|
|
|
|
boolean flag = this.l();
|
|
|
|
float f = this.getRadius();
|
|
|
|
+ // Paper start - fix MC-114618
|
2019-06-23 21:31:33 +02:00
|
|
|
+ if (f < 0.0F) {
|
2019-05-28 00:36:06 +02:00
|
|
|
+ this.die();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
if (this.world.isClientSide) {
|
|
|
|
ParticleParam particleparam = this.getParticle();
|
|
|
|
--
|
2019-06-25 06:14:30 +02:00
|
|
|
2.22.0
|
2019-05-28 00:36:06 +02:00
|
|
|
|