mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 07:40:37 +02:00
Remove unused parameter to is_empty()
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user