mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix: Nametags are not shown in some other cases (#4447)
This commit is contained in:
parent
e97258f625
commit
8b170d656e
1 changed files with 4 additions and 4 deletions
|
@ -120,9 +120,6 @@ 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
|
||||||
|
@ -154,6 +151,10 @@ public class PlayerEntity extends LivingEntity implements GeyserPlayerEntity {
|
||||||
addPlayerPacket.setGameType(GameType.SURVIVAL); //TODO
|
addPlayerPacket.setGameType(GameType.SURVIVAL); //TODO
|
||||||
addPlayerPacket.setAbilityLayers(BASE_ABILITY_LAYER); // Recommended to be added since 1.19.10, but only needed here for permissions viewing
|
addPlayerPacket.setAbilityLayers(BASE_ABILITY_LAYER); // Recommended to be added since 1.19.10, but only needed here for permissions viewing
|
||||||
addPlayerPacket.getMetadata().putFlags(flags);
|
addPlayerPacket.getMetadata().putFlags(flags);
|
||||||
|
|
||||||
|
// 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);
|
||||||
dirtyMetadata.apply(addPlayerPacket.getMetadata());
|
dirtyMetadata.apply(addPlayerPacket.getMetadata());
|
||||||
|
|
||||||
setFlagsDirty(false);
|
setFlagsDirty(false);
|
||||||
|
@ -377,7 +378,6 @@ public class PlayerEntity extends LivingEntity implements GeyserPlayerEntity {
|
||||||
|
|
||||||
if (needsUpdate) {
|
if (needsUpdate) {
|
||||||
dirtyMetadata.put(EntityDataTypes.NAME, this.nametag);
|
dirtyMetadata.put(EntityDataTypes.NAME, this.nametag);
|
||||||
dirtyMetadata.put(EntityDataTypes.NAMETAG_ALWAYS_SHOW, (byte) 1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue