Fix more error

This commit is contained in:
SilicaAndPina 2021-07-03 20:51:12 +12:00
parent cb435349d8
commit feb974de09

View file

@ -3639,7 +3639,7 @@ namespace HISP.Server
foreach (GameClient client in ConnectedClients)
if (client.LoggedIn)
if (!client.LoggedinUser.MuteLogins && !client.LoggedinUser.MuteAll)
if (client.LoggedinUser.Id != userId)
if (client.LoggedinUser.Id != sender.LoggedinUser.Id)
client.SendPacket(loginMessageBytes);