From 12d0c6522bbca906910aae0321cbaa7eb48db8c2 Mon Sep 17 00:00:00 2001
From: Zefram <zefram@fysh.org>
Date: Wed, 30 Jul 2014 21:28:30 +0200
Subject: [PATCH] Correct breakability of sandstone CNC nodes

---
 technic/items.lua |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/technic/items.lua b/technic/items.lua
index d62642c..a902947 100644
--- a/technic/items.lua
+++ b/technic/items.lua
@@ -80,6 +80,16 @@
 	inventory_image = "technic_fine_copper_wire.png",
 })
 
+minetest.register_craftitem("technic:fine_gold_wire", {
+	description = S("Fine Gold Wire"),
+	inventory_image = "technic_fine_gold_wire.png",
+})
+
+minetest.register_craftitem("technic:fine_silver_wire", {
+	description = S("Fine Silver Wire"),
+	inventory_image = "technic_fine_silver_wire.png",
+})
+
 minetest.register_craftitem("technic:copper_coil", {
 	description = S("Copper Coil"),
 	inventory_image = "technic_copper_coil.png",
@@ -144,3 +154,12 @@
 	inventory_image = "technic_carbon_cloth.png",
 })
 
+minetest.register_node("technic:machine_casing", {
+	description = S("Machine Casing"),
+	groups = {cracky=2},
+	sunlight_propagates = true,
+	paramtype = "light",
+	drawtype = "allfaces",
+	tiles = {"technic_machine_casing.png"},
+	sounds = default.node_sound_stone_defaults(),
+})

--
Gitblit v1.8.0