mirror of
https://github.com/minetest/minetest.git
synced 2025-02-19 19:33:44 +01:00
Fix uncought deserialization error on receiving data
This commit is contained in:
@ -1173,6 +1173,11 @@ void Server::Receive()
|
||||
"InvalidIncomingDataException: what()="
|
||||
<<e.what()<<std::endl;
|
||||
}
|
||||
catch(SerializationError &e) {
|
||||
infostream<<"Server::Receive(): "
|
||||
"SerializationError: what()="
|
||||
<<e.what()<<std::endl;
|
||||
}
|
||||
catch(con::PeerNotFoundException &e)
|
||||
{
|
||||
//NOTE: This is not needed anymore
|
||||
|
Reference in New Issue
Block a user