diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2017-06-03 11:56:37 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2017-06-03 11:56:37 +0200 |
commit | 80c4652c2eb11314d7cd9e1d79673333c808db52 (patch) | |
tree | a6f8388552666d3afedfd96ed6ad88c844d58241 /init.lua | |
parent | 121afdcd3f48b81599ef06e82c3f3d2288c8552c (diff) |
Allow exit using esc
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -131,7 +131,7 @@ minetest.register_on_player_receive_fields(function(player, form, pressed) end end atm.saveaccounts() - if not pressed.Quit then + if not pressed.Quit and not pressed.quit then atm.showform(player) end end |