mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-05 06:53:52 +01:00
Merge branch 'indev' of git://github.com/RealBadAngel/technic into indev
This commit is contained in:
commit
3e36899e11
@ -8,7 +8,7 @@ minetest.register_globalstep(function(dtime)
|
||||
for _,object in ipairs(minetest.env:get_objects_inside_radius(pos, 1)) do
|
||||
if not object:is_player() and object:get_luaentity() and object:get_luaentity().name == "__builtin:item" then
|
||||
if inv:room_for_item("main", ItemStack(object:get_luaentity().itemstring)) then
|
||||
if object:get_luaentity().timer > time_pick then
|
||||
if object:get_luaentity() and object:get_luaentity().timer > time_pick then
|
||||
inv:add_item("main", ItemStack(object:get_luaentity().itemstring))
|
||||
if object:get_luaentity().itemstring ~= "" then
|
||||
minetest.sound_play("item_drop_pickup", {
|
||||
|
Loading…
Reference in New Issue
Block a user