From 0e10e8360d6fa5aa6cbb86870b6244e8818d7dc8 Mon Sep 17 00:00:00 2001
From: coil <51716565+coil0@users.noreply.github.com>
Date: Sun, 15 Mar 2020 17:27:36 +0100
Subject: [PATCH] Fix crash when placing cable plates (#534)

---
 technic_chests/copper_chest.lua |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/technic_chests/copper_chest.lua b/technic_chests/copper_chest.lua
index 21f0563..fda1db0 100644
--- a/technic_chests/copper_chest.lua
+++ b/technic_chests/copper_chest.lua
@@ -19,13 +19,14 @@
 minetest.register_craft({
 	output = 'technic:copper_locked_chest 1',
 	recipe = {
-		{'technic:wrought_iron_ingot'},
+		{'basic_materials:padlock'},
 		{'technic:copper_chest'},
 	}
 })
 
 technic.chests:register("Copper", {
-	width = 10,
+	width = 12,
+	height = 5,
 	sort = true,
 	autosort = true,
 	infotext = false,
@@ -34,7 +35,8 @@
 })
 
 technic.chests:register("Copper", {
-	width = 10,
+	width = 12,
+	height = 5,
 	sort = true,
 	autosort = true,
 	infotext = false,

--
Gitblit v1.8.0