From a0ae4e60d0ddc1de92ce22e3f38b39d3f48d0bfd Mon Sep 17 00:00:00 2001 From: chris Date: Wed, 28 May 2025 20:51:56 +0200 Subject: [PATCH] Don't set deprecated property on area-effect-cloud entities (#5564) This should avoid black particles when none are set. --- .../org/geysermc/geyser/entity/type/AreaEffectCloudEntity.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/main/java/org/geysermc/geyser/entity/type/AreaEffectCloudEntity.java b/core/src/main/java/org/geysermc/geyser/entity/type/AreaEffectCloudEntity.java index 546f66700..82c40f8c4 100644 --- a/core/src/main/java/org/geysermc/geyser/entity/type/AreaEffectCloudEntity.java +++ b/core/src/main/java/org/geysermc/geyser/entity/type/AreaEffectCloudEntity.java @@ -54,7 +54,6 @@ public class AreaEffectCloudEntity extends Entity { // This disabled client side shrink of the cloud dirtyMetadata.put(EntityDataTypes.AREA_EFFECT_CLOUD_RADIUS, 3.0f); - dirtyMetadata.put(EntityDataTypes.AREA_EFFECT_CLOUD_CHANGE_RATE, Float.MIN_VALUE); dirtyMetadata.put(EntityDataTypes.AREA_EFFECT_CLOUD_CHANGE_ON_PICKUP, Float.MIN_VALUE); setFlag(EntityFlag.FIRE_IMMUNE, true);