mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 17:23:45 +01:00
Cosmetic player info changes
This commit is contained in:
parent
a0f5b70568
commit
3629a90c2e
@ -1745,9 +1745,10 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
|||||||
|
|
||||||
ScopeProfiler sp(g_profiler, "Server::ProcessData");
|
ScopeProfiler sp(g_profiler, "Server::ProcessData");
|
||||||
|
|
||||||
|
std::string addr_s;
|
||||||
try{
|
try{
|
||||||
Address address = m_con.GetPeerAddress(peer_id);
|
Address address = m_con.GetPeerAddress(peer_id);
|
||||||
std::string addr_s = address.serializeString();
|
addr_s = address.serializeString();
|
||||||
|
|
||||||
// drop player if is ip is banned
|
// drop player if is ip is banned
|
||||||
if(m_banmanager.isIpBanned(addr_s)){
|
if(m_banmanager.isIpBanned(addr_s)){
|
||||||
@ -1769,8 +1770,6 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string addr_s = m_con.GetPeerAddress(peer_id).serializeString();
|
|
||||||
|
|
||||||
u8 peer_ser_ver = getClient(peer_id)->serialization_version;
|
u8 peer_ser_ver = getClient(peer_id)->serialization_version;
|
||||||
|
|
||||||
try
|
try
|
||||||
@ -2178,7 +2177,7 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
|||||||
os<<player->getName()<<" ";
|
os<<player->getName()<<" ";
|
||||||
}
|
}
|
||||||
|
|
||||||
actionstream<<player->getName()<<" ["<<addr_s<<"] "<<" joins game. List of players: "
|
actionstream<<player->getName()<<" ["<<addr_s<<"] "<<"joins game. List of players: "
|
||||||
<<os.str()<<std::endl;
|
<<os.str()<<std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user