mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-25 18:30:29 +01:00
range fix again
This commit is contained in:
parent
0518993e5d
commit
85f2692ef0
@ -13,7 +13,7 @@ minetest.register_globalstep(function(dtime)
|
|||||||
if obj.timer > time_pick then
|
if obj.timer > time_pick then
|
||||||
inv:add_item("main", ItemStack(obj.itemstring))
|
inv:add_item("main", ItemStack(obj.itemstring))
|
||||||
if obj.itemstring ~= "" then
|
if obj.itemstring ~= "" then
|
||||||
minetest.sound_play("item_drop_pickup",{pos, gain = 1.0, max_hear_distance = 10})
|
minetest.sound_play("item_drop_pickup",{pos = pos, gain = 1.0, max_hear_distance = 10})
|
||||||
end
|
end
|
||||||
if object:get_luaentity() then
|
if object:get_luaentity() then
|
||||||
object:get_luaentity().itemstring = ""
|
object:get_luaentity().itemstring = ""
|
||||||
|
Loading…
Reference in New Issue
Block a user