forked from VoxeLibre/VoxeLibre
Disable the despawn timer catchup for items that were unloaded.
This commit is contained in:
parent
12e6c0e661
commit
677110e39f
|
@ -537,9 +537,9 @@ minetest.register_entity(":__builtin:item", {
|
||||||
self.itemstring = data.itemstring
|
self.itemstring = data.itemstring
|
||||||
self.always_collect = data.always_collect
|
self.always_collect = data.always_collect
|
||||||
if data.age then
|
if data.age then
|
||||||
self.age = data.age + dtime_s
|
self.age = data.age
|
||||||
else
|
else
|
||||||
self.age = dtime_s
|
self.age = self.age
|
||||||
end
|
end
|
||||||
--remember collection data
|
--remember collection data
|
||||||
-- If true, can collect item without delay
|
-- If true, can collect item without delay
|
||||||
|
|
Loading…
Reference in New Issue