forked from Mirrorlandia_minetest/minetest
Fix check that denies new clients from a singleplayer session
This commit is contained in:
parent
cc64a0405a
commit
0fa54531d4
@ -86,7 +86,7 @@ void Server::handleCommand_Init(NetworkPacket* pkt)
|
|||||||
|
|
||||||
// Do not allow multiple players in simple singleplayer mode.
|
// Do not allow multiple players in simple singleplayer mode.
|
||||||
// This isn't a perfect way to do it, but will suffice for now
|
// This isn't a perfect way to do it, but will suffice for now
|
||||||
if (m_simple_singleplayer_mode && m_clients.getClientIDs().size() > 1) {
|
if (m_simple_singleplayer_mode && !m_clients.getClientIDs().empty()) {
|
||||||
infostream << "Server: Not allowing another client (" << addr_s <<
|
infostream << "Server: Not allowing another client (" << addr_s <<
|
||||||
") to connect in simple singleplayer mode" << std::endl;
|
") to connect in simple singleplayer mode" << std::endl;
|
||||||
DenyAccess(peer_id, SERVER_ACCESSDENIED_SINGLEPLAYER);
|
DenyAccess(peer_id, SERVER_ACCESSDENIED_SINGLEPLAYER);
|
||||||
|
Loading…
Reference in New Issue
Block a user