From 2b047f19fd323be881db4f705782687105a4a473 Mon Sep 17 00:00:00 2001 From: codexp Date: Sat, 14 Jul 2018 00:36:35 +0200 Subject: [PATCH] Use translated description of material --- circular_saw.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/circular_saw.lua b/circular_saw.lua index 02ecf90..4857853 100644 --- a/circular_saw.lua +++ b/circular_saw.lua @@ -172,6 +172,7 @@ function circular_saw:update_inventory(pos, amount) end local node_name = stack:get_name() or "" + local node_def = stack:get_definition() local name_parts = circular_saw.known_nodes[node_name] or "" local modname = name_parts[1] or "" local material = name_parts[2] or "" @@ -206,7 +207,9 @@ function circular_saw:update_inventory(pos, amount) meta:set_int("anz", amount) meta:set_string("infotext", - S("Circular Saw is working on @1", material) .. owned_by + S("Circular Saw is working on @1", + node_def and node_def.description or material + ) .. owned_by ) end