From 6e46aefe5d531f93608a5d91cfcfa11437597d11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tin=20=C5=A0vagelj?= Date: Wed, 10 Feb 2021 08:02:22 +0100 Subject: [PATCH] Resolve aliases in cost calculation. --- circular_saw.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circular_saw.lua b/circular_saw.lua index 174f344..60231fc 100644 --- a/circular_saw.lua +++ b/circular_saw.lua @@ -89,8 +89,9 @@ circular_saw.names = { } function circular_saw:get_cost(inv, stackname) + local name = minetest.registered_aliases[stackname] or stackname for i, item in pairs(inv:get_list("output")) do - if item:get_name() == stackname then + if item:get_name() == name then return circular_saw.cost_in_microblocks[i] end end