mirror of
https://github.com/PaperMC/Velocity.git
synced 2025-03-07 15:57:17 +08:00
Do not send empty upsert player info packets
There is no harm in this, but seemingly, some common mod blows up on this, and, well, why eat buffer?
This commit is contained in:
parent
5cdcf86cf9
commit
368d1a7c12
@ -166,7 +166,9 @@ public class VelocityTabList implements InternalTabList {
|
||||
return entry;
|
||||
});
|
||||
|
||||
this.connection.write(new UpsertPlayerInfoPacket(actions, List.of(playerInfoEntry)));
|
||||
if (!actions.isEmpty()) {
|
||||
this.connection.write(new UpsertPlayerInfoPacket(actions, List.of(playerInfoEntry)));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user