Sires
2018-03-15 e12220be79e25c1c5cb866e1e98091d35079cd3e
technic/tools/vacuum.lua
@@ -26,7 +26,7 @@
      end
      local pos = user:getpos()
      local inv = user:get_inventory()
      for _, object in ipairs(minetest.env:get_objects_inside_radius(pos, vacuum_range)) do
      for _, object in ipairs(minetest.get_objects_inside_radius(pos, vacuum_range)) do
         local luaentity = object:get_luaentity()
         if not object:is_player() and luaentity and luaentity.name == "__builtin:item" and luaentity.itemstring ~= "" then
            if inv and inv:room_for_item("main", ItemStack(luaentity.itemstring)) then
@@ -55,7 +55,7 @@
   output = 'technic:vacuum',
   recipe = {
      {'pipeworks:tube_1',              'pipeworks:filter', 'technic:battery'},
      {'pipeworks:tube_1',              'technic:motor',    'technic:battery'},
      {'pipeworks:tube_1',              'basic_materials:motor',    'technic:battery'},
      {'technic:stainless_steel_ingot', '',                 ''},
   }
})