mirror of
https://github.com/ViaVersion/ViaLegacy.git
synced 2024-12-22 16:38:16 +01:00
Fixed own skin not loading after respawn
This commit is contained in:
parent
dbf995863e
commit
102b8a55db
@ -189,6 +189,11 @@ public class Protocol1_8to1_7_6_10 extends AbstractProtocol<ClientboundPackets1_
|
||||
wrapper.user().get(EntityTracker.class).clear();
|
||||
}
|
||||
});
|
||||
handler(wrapper -> {
|
||||
final ProtocolInfo protocolInfo = wrapper.user().getProtocolInfo();
|
||||
final TablistStorage tablistStorage = wrapper.user().get(TablistStorage.class);
|
||||
tablistStorage.sendTempEntry(new TabListEntry(protocolInfo.getUsername(), protocolInfo.getUuid())); // load own skin
|
||||
});
|
||||
}
|
||||
});
|
||||
this.registerClientbound(ClientboundPackets1_7_2.PLAYER_POSITION, new PacketHandlers() {
|
||||
|
Loading…
Reference in New Issue
Block a user