Cosmetic player info changes

master
proller 2013-07-23 20:31:05 +04:00
parent a0f5b70568
commit 3629a90c2e
1 changed files with 3 additions and 4 deletions

View File

@ -1745,9 +1745,10 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
ScopeProfiler sp(g_profiler, "Server::ProcessData");
std::string addr_s;
try{
Address address = m_con.GetPeerAddress(peer_id);
std::string addr_s = address.serializeString();
addr_s = address.serializeString();
// drop player if is ip is banned
if(m_banmanager.isIpBanned(addr_s)){
@ -1769,8 +1770,6 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
return;
}
std::string addr_s = m_con.GetPeerAddress(peer_id).serializeString();
u8 peer_ser_ver = getClient(peer_id)->serialization_version;
try
@ -2178,7 +2177,7 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
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;
}