--- a/QTfrontend/net/newnetclient.cpp Mon Feb 19 00:14:10 2024 +0300
+++ b/QTfrontend/net/newnetclient.cpp Sun Mar 24 14:33:57 2024 -0400
@@ -948,8 +948,9 @@
for(int i = 1; i < lst.size(); ++i)
{
- emit chatStringFromNet(tr("%1 *** %2 has joined the room").arg('\x03').arg(lst[i]));
m_playersModel->playerJoinedRoom(lst[i], isChief && (lst[i] != mynick));
+ if(!m_playersModel->isFlagSet(lst[i], PlayersListModel::Ignore))
+ emit chatStringFromNet(tr("%1 *** %2 has joined the room").arg('\x03').arg(lst[i]));
}
return;
}