Merge pull request #61 from hdastwb/patch-1

Convert remove_items to a number in item_drop to avoid crashes
This commit is contained in:
ShadowNinja 2013-07-20 14:48:18 -07:00
commit e43e6cc1b0
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ minetest.register_entity(":__builtin:item", {
end,
on_step = function(self, dtime)
local time = minetest.setting_get("remove_items")
local time = tonumber(minetest.setting_get("remove_items"))
if not time then
time = 300
end