Formspecs: Remove accidental empty 'quit' field

master
SmallJoker 2018-07-10 18:27:03 +02:00
parent 0cf36454d6
commit f7a8e75765
1 changed files with 2 additions and 1 deletions

View File

@ -1511,7 +1511,8 @@ void Server::handleCommand_InventoryFields(NetworkPacket* pkt)
if (peer_state_iterator != m_formspec_state_data.end()) {
const std::string &server_formspec_name = peer_state_iterator->second;
if (client_formspec_name == server_formspec_name) {
if (fields["quit"] == "true")
auto it = fields.find("quit");
if (it != fields.end() && it->second == "true")
m_formspec_state_data.erase(peer_state_iterator);
m_script->on_playerReceiveFields(playersao, client_formspec_name, fields);