Paper/patches/removed/1.17/No longer needed/0327-MC-114618-Fix-EntityAreaEffectCloud-from-going-negat.patch

28 lines
1.1 KiB
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
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
2021-06-13 13:40:34 +02:00
1.17 update note: Likely fixed in 1.17
2021-06-11 14:02:28 +02:00
2021-06-15 04:54:17 +02:00
fixed https://bugs.mojang.com/browse/MC-114618
2021-06-11 14:02:28 +02:00
diff --git a/src/main/java/net/minecraft/world/entity/AreaEffectCloud.java b/src/main/java/net/minecraft/world/entity/AreaEffectCloud.java
2021-06-13 13:40:34 +02:00
index 4733f74ff028c03a60b73280caf9e4d1e2f0ca30..882c216b508a8623c2393b668cff6d702fe738b9 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/net/minecraft/world/entity/AreaEffectCloud.java
+++ b/src/main/java/net/minecraft/world/entity/AreaEffectCloud.java
2021-06-13 13:40:34 +02:00
@@ -197,6 +197,12 @@ public class AreaEffectCloud extends Entity {
2021-06-11 14:02:28 +02:00
super.tick();
boolean flag = this.isWaiting();
float f = this.getRadius();
+ // Paper start - fix MC-114618
+ if (f < 0.0F) {
+ this.remove();
+ return;
+ }
+ // Paper end
if (this.level.isClientSide) {
2021-06-13 13:40:34 +02:00
if (flag && this.random.nextBoolean()) {