1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-27 06:50:29 +02:00

Pause menu: Fix segfault on u/down key input

This commit is contained in:
Jean-Patrick Guerrero 2021-02-08 18:56:51 +01:00 committed by SmallJoker
parent 6591597430
commit 1d64e6537c

View File

@ -171,15 +171,9 @@ struct LocalFormspecHandler : public TextDest
return; return;
} }
if (fields.find("quit") != fields.end()) {
return; return;
} }
if (fields.find("btn_continue") != fields.end()) {
return;
}
}
if (m_formname == "MT_DEATH_SCREEN") { if (m_formname == "MT_DEATH_SCREEN") {
assert(m_client != 0); assert(m_client != 0);
m_client->sendRespawn(); m_client->sendRespawn();