Skip to content

Commit

Permalink
Meow ( removed invis check )
Browse files Browse the repository at this point in the history
  • Loading branch information
Nwepy committed Jan 20, 2024
1 parent c5fd6a9 commit c982bcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void renderHealth(AbstractClientPlayerEntity abstractClientPlayerEntity,

private static boolean shouldRenderHeartsForEntity(Entity entity) {
if (entity instanceof AbstractClientPlayerEntity abstractClientPlayerEntity) {
return !abstractClientPlayerEntity.isMainPlayer() && !abstractClientPlayerEntity.isInvisibleTo(MinecraftClient.getInstance().player);
return !abstractClientPlayerEntity.isMainPlayer();
}

return false;
Expand Down

0 comments on commit c982bcd

Please sign in to comment.