From a9b10cc4b10110a9c54bd03ac07eea3151b10ede Mon Sep 17 00:00:00 2001
From: mat9117 <49096572+mat9117@users.noreply.github.com>
Date: Sun, 14 Apr 2019 11:43:30 +0200
Subject: [PATCH] Fix Polish translation (#497)

---
 technic/machines/LV/geothermal.lua |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua
index 27f4abc..c66547e 100644
--- a/technic/machines/LV/geothermal.lua
+++ b/technic/machines/LV/geothermal.lua
@@ -11,14 +11,18 @@
 	output = 'technic:geothermal',
 	recipe = {
 		{'technic:granite',          'default:diamond',        'technic:granite'},
-		{'technic:fine_copper_wire', 'technic:machine_casing', 'technic:fine_copper_wire'},
+		{'basic_materials:copper_wire', 'technic:machine_casing', 'basic_materials:copper_wire'},
 		{'technic:granite',          'technic:lv_cable',       'technic:granite'},
-	}
+	},
+	replacements = {
+		{"basic_materials:copper_wire", "basic_materials:empty_spool"},
+		{"basic_materials:copper_wire", "basic_materials:empty_spool"}
+	},
 })
 
 minetest.register_craftitem("technic:geothermal", {
 	description = S("Geothermal %s Generator"):format("LV"),
-}) 
+})
 
 local check_node_around = function(pos)
 	local node = minetest.get_node(pos)

--
Gitblit v1.8.0