diff options
author | ShadowNinja <shadowninja@minetest.net> | 2014-05-30 21:00:58 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-05-30 21:00:58 -0400 |
commit | ebc122fb3504c8de84371cdb6d45c1264c5d9d13 (patch) | |
tree | ef023e0f4b031a5ac75689480d4499328c21b6ae | |
parent | 7c2f2d9630c03e12623a6e8941e007ee0e273b3d (diff) |
Remove unused parameter to is_empty()
-rw-r--r-- | technic/machines/MV/tool_workshop.lua | 2 |
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 |