mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-26 10:50:33 +01:00
convert remove_items to avoid crashes
This commit is contained in:
parent
acef4b1f63
commit
17f3ce2ba3
@ -88,7 +88,7 @@ minetest.register_entity(":__builtin:item", {
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
on_step = function(self, dtime)
|
on_step = function(self, dtime)
|
||||||
local time = minetest.setting_get("remove_items")
|
local time = tonumber(minetest.setting_get("remove_items"))
|
||||||
if not time then
|
if not time then
|
||||||
time = 300
|
time = 300
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user