mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-23 10:35:12 +01:00
Fix bossbars so they send correctly, credits to @jollyolbrits for detailed reporting of where the issue may take place.
This commit is contained in:
parent
a496b2d3a8
commit
0ae9d9dbbf
@ -153,14 +153,16 @@ public class ViaBossBar implements BossBar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void sendPacket(UpdateAction action) {
|
private void sendPacket(UpdateAction action) {
|
||||||
ByteBuf buf = getPacket(action);
|
for (UUID uuid : new ArrayList<>(players)) {
|
||||||
for (UUID uuid : new ArrayList<>(players))
|
ByteBuf buf = getPacket(action);
|
||||||
sendPacket(uuid, buf);
|
sendPacket(uuid, buf);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sendPacket(UUID uuid, ByteBuf buf) {
|
private void sendPacket(UUID uuid, ByteBuf buf) {
|
||||||
if (!ViaVersion.getInstance().isPorted(uuid) || !(ViaVersion.getInstance().getPlayerVersion(uuid) >= ProtocolVersion.v1_9.getId())) {
|
if (!ViaVersion.getInstance().isPorted(uuid) || !(ViaVersion.getInstance().getPlayerVersion(uuid) >= ProtocolVersion.v1_9.getId())) {
|
||||||
players.remove(uuid);
|
players.remove(uuid);
|
||||||
|
buf.release();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ViaVersion.getInstance().sendRawPacket(uuid, buf);
|
ViaVersion.getInstance().sendRawPacket(uuid, buf);
|
||||||
|
Loading…
Reference in New Issue
Block a user