Skip to content

Commit

Permalink
fix black particles around invisible area effect cloud entities
Browse files Browse the repository at this point in the history
  • Loading branch information
onebeastchris committed Jan 17, 2025
1 parent 07629a4 commit a7d475e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ protected void initializeMetadata() {
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();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public CreakingEntity(GeyserSession session, int entityId, long geyserId, UUID u
@Override
protected void initializeMetadata() {
super.initializeMetadata();
setFlag(EntityFlag.HIDDEN_WHEN_INVISIBLE, true);
setFlag(EntityFlag.FIRE_IMMUNE, true);
}

Expand Down

0 comments on commit a7d475e

Please sign in to comment.