mirror of
https://github.com/minetest/minetest.git
synced 2024-11-10 01:33:46 +01:00
Server::ProcessData(): call getBanName once instead of twice (#639)
This commit is contained in:
parent
1ecf51a13f
commit
e61b1773c9
@ -1776,12 +1776,13 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
||||
|
||||
// drop player if is ip is banned
|
||||
if(m_banmanager->isIpBanned(addr_s)){
|
||||
std::string ban_name = m_banmanager->getBanName(addr_s);
|
||||
infostream<<"Server: A banned client tried to connect from "
|
||||
<<addr_s<<"; banned name was "
|
||||
<<m_banmanager->getBanName(addr_s)<<std::endl;
|
||||
<<ban_name<<std::endl;
|
||||
// This actually doesn't seem to transfer to the client
|
||||
DenyAccess(peer_id, L"Your ip is banned. Banned name was "
|
||||
+narrow_to_wide(m_banmanager->getBanName(addr_s)));
|
||||
+narrow_to_wide(ban_name));
|
||||
m_con.DeletePeer(peer_id);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user