2020-01-22 03:02:07 +01:00
|
|
|
From 24a3c231cb896032bb5737b5d55634c658a06922 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
|
2020-01-22 03:02:07 +01:00
|
|
|
index e8f3e55fd..44289c230 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();
|
|
|
|
--
|
2020-01-22 03:02:07 +01:00
|
|
|
2.25.0.windows.1
|
2019-05-28 00:36:06 +02:00
|
|
|
|