summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-05-30 21:00:58 -0400
committerShadowNinja <shadowninja@minetest.net>2014-05-30 21:00:58 -0400
commitebc122fb3504c8de84371cdb6d45c1264c5d9d13 (patch)
treeef023e0f4b031a5ac75689480d4499328c21b6ae
parent7c2f2d9630c03e12623a6e8941e007ee0e273b3d (diff)
Remove unused parameter to is_empty()
-rw-r--r--technic/machines/MV/tool_workshop.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/MV/tool_workshop.lua b/technic/machines/MV/tool_workshop.lua
index 67a37e6..4f2fb51 100644
--- a/technic/machines/MV/tool_workshop.lua
+++ b/technic/machines/MV/tool_workshop.lua
@@ -62,7 +62,7 @@ minetest.register_abm({
local repairable = false
local srcstack = inv:get_stack("src", 1)
- if not srcstack:is_empty("src") then
+ if not srcstack:is_empty() then
local itemdef = minetest.registered_items[srcstack:get_name()]
if itemdef and
itemdef.wear_represents and