mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix: Nametags not showing up (#4427)
This commit is contained in:
parent
63fd97ab32
commit
19c6648bc2
1 changed files with 3 additions and 0 deletions
|
@ -120,6 +120,9 @@ public class PlayerEntity extends LivingEntity implements GeyserPlayerEntity {
|
||||||
super.initializeMetadata();
|
super.initializeMetadata();
|
||||||
// For the OptionalPack, set all bits as invisible by default as this matches Java Edition behavior
|
// For the OptionalPack, set all bits as invisible by default as this matches Java Edition behavior
|
||||||
dirtyMetadata.put(EntityDataTypes.MARK_VARIANT, 0xff);
|
dirtyMetadata.put(EntityDataTypes.MARK_VARIANT, 0xff);
|
||||||
|
// Since 1.20.60, the nametag does not show properly if this is not set :/
|
||||||
|
// The nametag does disappear properly when the player is invisible though.
|
||||||
|
dirtyMetadata.put(EntityDataTypes.NAMETAG_ALWAYS_SHOW, (byte) 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue