Add “keep inventory” setting

This commit is contained in:
Wuzzy 2017-06-09 12:42:21 +02:00
parent ca49e4fcd0
commit 900b840762
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
--if minetest.setting_get("keepInventory") == false then
if minetest.setting_getbool("mcl_keep_inventory_on_death") == false then
minetest.register_on_dieplayer(function(player)
local inv = player:get_inventory()
local pos = player:getpos()
@ -17,4 +17,4 @@
end
end
end)
--end
end