mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Server: Improve some log messages (#9820)
This commit is contained in:
parent
f34c62c47f
commit
d1c6cc72cc
2 changed files with 10 additions and 12 deletions
|
@ -111,8 +111,6 @@ void Server::handleCommand_Init(NetworkPacket* pkt)
|
|||
|
||||
if (depl_serial_v == SER_FMT_VER_INVALID) {
|
||||
actionstream << "Server: A mismatched client tried to connect from " <<
|
||||
addr_s << std::endl;
|
||||
infostream << "Server: Cannot negotiate serialization version with " <<
|
||||
addr_s << " client_max=" << (int)client_max << std::endl;
|
||||
DenyAccess(peer_id, SERVER_ACCESSDENIED_WRONG_VERSION);
|
||||
return;
|
||||
|
@ -902,8 +900,8 @@ bool Server::checkInteractDistance(RemotePlayer *player, const f32 d, const std:
|
|||
actionstream << "Player " << player->getName()
|
||||
<< " tried to access " << what
|
||||
<< " from too far: "
|
||||
<< "d=" << d <<", max_d=" << max_d
|
||||
<< ". ignoring." << std::endl;
|
||||
<< "d=" << d << ", max_d=" << max_d
|
||||
<< "; ignoring." << std::endl;
|
||||
// Call callbacks
|
||||
m_script->on_cheat(player->getPlayerSAO(), "interacted_too_far");
|
||||
return false;
|
||||
|
@ -956,7 +954,7 @@ void Server::handleCommand_Interact(NetworkPacket *pkt)
|
|||
}
|
||||
|
||||
if (playersao->isDead()) {
|
||||
actionstream << "Server: NoCheat: " << player->getName()
|
||||
actionstream << "Server: " << player->getName()
|
||||
<< " tried to interact while dead; ignoring." << std::endl;
|
||||
if (pointed.type == POINTEDTHING_NODE) {
|
||||
// Re-send block to revert change on client-side
|
||||
|
@ -1145,7 +1143,7 @@ void Server::handleCommand_Interact(NetworkPacket *pkt)
|
|||
playersao->noCheatDigEnd();
|
||||
// If player didn't start digging this, ignore dig
|
||||
if (nocheat_p != p_under) {
|
||||
infostream << "Server: NoCheat: " << player->getName()
|
||||
infostream << "Server: " << player->getName()
|
||||
<< " started digging "
|
||||
<< PP(nocheat_p) << " and completed digging "
|
||||
<< PP(p_under) << "; not digging." << std::endl;
|
||||
|
@ -1169,9 +1167,9 @@ void Server::handleCommand_Interact(NetworkPacket *pkt)
|
|||
}
|
||||
// If can't dig, ignore dig
|
||||
if (!params.diggable) {
|
||||
infostream << "Server: NoCheat: " << player->getName()
|
||||
infostream << "Server: " << player->getName()
|
||||
<< " completed digging " << PP(p_under)
|
||||
<< ", which is not diggable with tool. not digging."
|
||||
<< ", which is not diggable with tool; not digging."
|
||||
<< std::endl;
|
||||
is_valid_dig = false;
|
||||
// Call callbacks
|
||||
|
@ -1195,7 +1193,7 @@ void Server::handleCommand_Interact(NetworkPacket *pkt)
|
|||
}
|
||||
// Dig not possible
|
||||
else {
|
||||
infostream << "Server: NoCheat: " << player->getName()
|
||||
infostream << "Server: " << player->getName()
|
||||
<< " completed digging " << PP(p_under)
|
||||
<< "too fast; not digging." << std::endl;
|
||||
is_valid_dig = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue