From 0921c326a8f1b6ffc5e8013e3c477983df96f386 Mon Sep 17 00:00:00 2001
From: SmallJoker <mk939@ymail.com>
Date: Thu, 03 Aug 2023 21:28:41 +0200
Subject: [PATCH] Chainsaw: fix occasional error on startup

---
 technic/tools/vacuum.lua |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/technic/tools/vacuum.lua b/technic/tools/vacuum.lua
index 037f3bb..7b01af8 100644
--- a/technic/tools/vacuum.lua
+++ b/technic/tools/vacuum.lua
@@ -24,7 +24,7 @@
 				gain = 0.4,
 			})
 		end
-		local pos = user:getpos()
+		local pos = user:get_pos()
 		local inv = user:get_inventory()
 		for _, object in ipairs(minetest.get_objects_inside_radius(pos, vacuum_range)) do
 			local luaentity = object:get_luaentity()
@@ -44,7 +44,7 @@
 				end
 			end
 		end
-		
+
 		technic.set_RE_wear(itemstack, meta.charge, vacuum_max_charge)
 		itemstack:set_metadata(minetest.serialize(meta))
 		return itemstack
@@ -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', '',                 ''},
 	}
 })

--
Gitblit v1.8.0