1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-27 14:22:41 +02:00

Rework fix for MC-114618 so not break map maker's workflow. Fixes

This commit is contained in:
William Blake Galbreath 2019-06-23 14:31:33 -05:00
parent f34c1b5fe2
commit 347defbe7a

View file

@ -6,7 +6,7 @@ Subject: [PATCH] MC-114618 - Fix EntityAreaEffectCloud from going negative
diff --git a/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java b/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java
index 418c638d31..2eaed1cd63 100644
index 418c638d3..315ba7a22 100644
--- a/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java
+++ b/src/main/java/net/minecraft/server/EntityAreaEffectCloud.java
@@ -0,0 +0,0 @@ public class EntityAreaEffectCloud extends Entity {
@ -14,7 +14,7 @@ index 418c638d31..2eaed1cd63 100644
boolean flag = this.l();
float f = this.getRadius();
+ // Paper start - fix MC-114618
+ if (f < 0.5F) {
+ if (f < 0.0F) {
+ this.die();
+ return;
+ }
@ -22,21 +22,4 @@ index 418c638d31..2eaed1cd63 100644
if (this.world.isClientSide) {
ParticleParam particleparam = this.getParticle();
@@ -0,0 +0,0 @@ public class EntityAreaEffectCloud extends Entity {
if (this.radiusPerTick != 0.0F) {
f += this.radiusPerTick;
- if (f < 0.5F) {
- this.die();
- return;
- }
+ // Paper start - moved up - fix MC-114618
+ //if (f < 0.5F) {
+ // this.die();
+ // return;
+ //}
+ // Paper end
this.setRadius(f);
}
--