From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: William Blake Galbreath 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/world/entity/EntityAreaEffectCloud.java b/src/main/java/net/minecraft/world/entity/EntityAreaEffectCloud.java index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 --- a/src/main/java/net/minecraft/world/entity/EntityAreaEffectCloud.java +++ b/src/main/java/net/minecraft/world/entity/EntityAreaEffectCloud.java @@ -0,0 +0,0 @@ public class EntityAreaEffectCloud extends Entity { super.tick(); boolean flag = this.k(); float f = this.getRadius(); + // Paper start - fix MC-114618 + if (f < 0.0F) { + this.die(); + return; + } + // Paper end if (this.world.isClientSide) { ParticleParam particleparam = this.getParticle();