1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Add additional check to avoid broadcasting private messages in error conditions

This commit is contained in:
sapier 2014-02-02 01:55:24 +01:00
parent 6a3fa9df12
commit e7c2e61b19

View File

@ -4385,6 +4385,10 @@ void Server::notifyPlayer(const char *name, const std::wstring msg, const bool p
Player *player = m_env->getPlayer(name);
if(!player)
return;
if (player->peer_id == PEER_ID_INEXISTENT)
return;
if (prepend)
SendChatMessage(player->peer_id, std::wstring(L"Server -!- ")+msg);
else