mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 13:52:31 +01:00
Remove unused parameter to is_empty()
This commit is contained in:
parent
7c2f2d9630
commit
ebc122fb35
@ -62,7 +62,7 @@ minetest.register_abm({
|
|||||||
|
|
||||||
local repairable = false
|
local repairable = false
|
||||||
local srcstack = inv:get_stack("src", 1)
|
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()]
|
local itemdef = minetest.registered_items[srcstack:get_name()]
|
||||||
if itemdef and
|
if itemdef and
|
||||||
itemdef.wear_represents and
|
itemdef.wear_represents and
|
||||||
|
Loading…
Reference in New Issue
Block a user