From 50382a44a679da53f94653645a2f5e8c1d7e5636 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 80439a0..3318ba9 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