1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-25 09:49:25 +00:00

fix black particles around invisible area effect cloud entities

This commit is contained in:
onebeastchris
2025-01-17 22:47:15 +01:00
parent 07629a42c9
commit a7d475e7e4
2 changed files with 1 additions and 1 deletions

View File

@@ -176,6 +176,7 @@ public class Entity implements GeyserEntity {
setFlag(EntityFlag.HAS_COLLISION, true);
setFlag(EntityFlag.CAN_SHOW_NAME, true);
setFlag(EntityFlag.CAN_CLIMB, true);
setFlag(EntityFlag.HIDDEN_WHEN_INVISIBLE, true);
// Let the Java server (or us) supply all sounds for an entity
setClientSideSilent();
}

View File

@@ -53,7 +53,6 @@ public class CreakingEntity extends MonsterEntity {
@Override
protected void initializeMetadata() {
super.initializeMetadata();
setFlag(EntityFlag.HIDDEN_WHEN_INVISIBLE, true);
setFlag(EntityFlag.FIRE_IMMUNE, true);
}