missed checks

This commit is contained in:
jenz 2026-07-04 02:18:27 +02:00
parent 5a1ca4959d
commit ee18f49be0

View File

@ -465,7 +465,7 @@ void UpdateSpecialMutesOtherClients(int client)
SetListenOverride(i, client, Listen_No); SetListenOverride(i, client, Listen_No);
//LogMessage("selfmuted 1: i: %N. client: %N", i, client); //LogMessage("selfmuted 1: i: %N. client: %N", i, client);
} }
else if(!GetIgnored(i, client) && PM_IsPlayerSteam(i)) //dont allows nosteamers to have it overwritten to listen yes to stop broadcastvoice data when using wrong audio codecs for nosteamers. else if(!GetIgnored(i, client) && !IsFakeClient(i) && PM_IsPlayerSteam(i)) //dont allows nosteamers to have it overwritten to listen yes to stop broadcastvoice data when using wrong audio codecs for nosteamers.
SetListenOverride(i, client, Listen_Yes); SetListenOverride(i, client, Listen_Yes);
} }
} }
@ -514,7 +514,7 @@ void UpdateSpecialMutesThisClient(int client)
SetListenOverride(client, i, Listen_No); SetListenOverride(client, i, Listen_No);
//LogMessage("selfmuted 2: client: %N. i: %N", client, i); //LogMessage("selfmuted 2: client: %N. i: %N", client, i);
} }
else if(!GetIgnored(client, i) && PM_IsPlayerSteam(i)) //dont allows nosteamers to have it overwritten to listen yes to stop broadcastvoice data when using wrong audio codecs for nosteamers. else if(!GetIgnored(client, i) && !IsFakeClient(i) && PM_IsPlayerSteam(i)) //dont allows nosteamers to have it overwritten to listen yes to stop broadcastvoice data when using wrong audio codecs for nosteamers.
SetListenOverride(client, i, Listen_Yes); SetListenOverride(client, i, Listen_Yes);
} }
} }