From 363f0332788e04e2e4bb63af5cd21fac5ae56ae5 Mon Sep 17 00:00:00 2001
From: ShadowNinja <noreply@gmail.com>
Date: Sun, 06 Oct 2013 18:42:41 +0200
Subject: [PATCH] Disable wind mill by default because it isn't ready yet

---
 technic_chests/copper_chest.lua |   32 ++++++++++++++++++++------------
 1 files changed, 20 insertions(+), 12 deletions(-)

diff --git a/technic_chests/copper_chest.lua b/technic_chests/copper_chest.lua
index c121e78..91efa96 100644
--- a/technic_chests/copper_chest.lua
+++ b/technic_chests/copper_chest.lua
@@ -1,18 +1,18 @@
 minetest.register_craft({
 	output = 'technic:copper_chest 1',
 	recipe = {
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
-		{'moreores:copper_ingot','technic:iron_chest','moreores:copper_ingot'},
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
+		{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
+		{'default:copper_ingot','technic:iron_chest','default:copper_ingot'},
+		{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
 	}
 })
 
 minetest.register_craft({
 	output = 'technic:copper_locked_chest 1',
 	recipe = {
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
-		{'moreores:copper_ingot','technic:iron_locked_chest','moreores:copper_ingot'},
-		{'moreores:copper_ingot','moreores:copper_ingot','moreores:copper_ingot'},
+		{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
+		{'default:copper_ingot','technic:iron_locked_chest','default:copper_ingot'},
+		{'default:copper_ingot','default:copper_ingot','default:copper_ingot'},
 	}
 })
 
@@ -44,9 +44,13 @@
 	on_construct = function(pos)
 		local meta = minetest.env:get_meta(pos)
 		meta:set_string("formspec",
-				"invsize[10,9;]"..
-				"list[current_name;main;0,0;10,4;]"..
-				"list[current_player;main;0,5;8,4;]")
+				"invsize[10,10;]"..
+				"label[0,0;Copper Chest]"..
+				"list[current_name;main;0,1;10,4;]"..
+				"list[current_player;main;0,6;8,4;]"..
+				"background[-0.19,-0.25;10.4,10.75;ui_form_bg.png]"..
+				"background[0,1;10,4;ui_copper_chest_inventory.png]"..
+				"background[0,6;8,4;ui_main_inventory.png]")
 		meta:set_string("infotext", "Copper Chest")
 		local inv = meta:get_inventory()
 		inv:set_size("main", 10*4)
@@ -76,9 +80,13 @@
 	on_construct = function(pos)
 		local meta = minetest.env:get_meta(pos)
 		meta:set_string("formspec",
-				"invsize[10,9;]"..
-				"list[current_name;main;0,0;10,4;]"..
-				"list[current_player;main;0,5;8,4;]")
+				"invsize[10,10;]"..
+				"label[0,0;Copper Locked Chest]"..
+				"list[current_name;main;0,1;10,4;]"..
+				"list[current_player;main;0,6;8,4;]"..
+				"background[-0.19,-0.25;10.4,10.75;ui_form_bg.png]"..
+				"background[0,1;10,4;ui_copper_chest_inventory.png]"..
+				"background[0,6;8,4;ui_main_inventory.png]")
 		meta:set_string("infotext", "Copper Locked Chest")
 		meta:set_string("owner", "")
 		local inv = meta:get_inventory()

--
Gitblit v1.8.0