mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
network: Replace a fatal_error with just error logging
This commit is contained in:
parent
36d35f2fe3
commit
d76785b4c7
@ -336,11 +336,9 @@ bool ConnectionSendThread::rawSendAsPacket(session_t peer_id, u8 channelnum,
|
|||||||
{
|
{
|
||||||
PeerHelper peer = m_connection->getPeerNoEx(peer_id);
|
PeerHelper peer = m_connection->getPeerNoEx(peer_id);
|
||||||
if (!peer) {
|
if (!peer) {
|
||||||
LOG(dout_con << m_connection->getDesc()
|
LOG(errorstream << m_connection->getDesc()
|
||||||
<< " INFO: dropped packet for non existent peer_id: "
|
<< " dropped " << (reliable ? "reliable " : "")
|
||||||
<< peer_id << std::endl);
|
<< "packet for non existent peer_id: " << peer_id << std::endl);
|
||||||
FATAL_ERROR_IF(!reliable,
|
|
||||||
"Trying to send raw packet reliable but no peer found!");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
Channel *channel = &(dynamic_cast<UDPPeer *>(&peer)->channels[channelnum]);
|
Channel *channel = &(dynamic_cast<UDPPeer *>(&peer)->channels[channelnum]);
|
||||||
|
Loading…
Reference in New Issue
Block a user