diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-18 20:01:17 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-07-18 20:01:17 +0200 |
commit | 5a8610c2f41e44c827912246b4f9437051d11621 (patch) | |
tree | 04fa785120501182e83c5b05515527bb0428aa63 /clientmods/respawn/init.lua | |
parent | 83f59484d3b03e8964f1c7886dd1a0afd96ddd8d (diff) | |
download | dragonfireclient-5a8610c2f41e44c827912246b4f9437051d11621.tar.xz |
Added customizable keybindings, improved freecam, added special inventory keybind (by default ender inventory)
Diffstat (limited to 'clientmods/respawn/init.lua')
-rw-r--r-- | clientmods/respawn/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clientmods/respawn/init.lua b/clientmods/respawn/init.lua index 2a3566684..96bfe7acc 100644 --- a/clientmods/respawn/init.lua +++ b/clientmods/respawn/init.lua @@ -18,7 +18,8 @@ minetest.register_on_death(function() if minetest.settings:get_bool("autorespawn") then minetest.send_respawn() else - minetest.show_formspec("respawn:death", formspec) + minetest.show_formspec("respawn:death", formspec) + end end) minetest.register_on_formspec_input(function(formname, fields) |