From b0cf295bd57ab8032bb48f171ef5510489652169 Mon Sep 17 00:00:00 2001 From: flux <25628292+fluxionary@users.noreply.github.com> Date: Wed, 26 Apr 2023 06:56:22 -0700 Subject: [PATCH] change recipe for glass pane to avoid conflict w/ xdecor --- modules/historic/crafts.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/historic/crafts.lua b/modules/historic/crafts.lua index 1ef7523..6327c6a 100644 --- a/modules/historic/crafts.lua +++ b/modules/historic/crafts.lua @@ -33,9 +33,9 @@ if ci.stick and ci.glass then minetest.register_craft({ output = "cottages:glass_pane 4", recipe = { - { ci.stick, ci.stick, ci.stick }, + { "", ci.stick, "" }, { ci.stick, ci.glass, ci.stick }, - { ci.stick, ci.stick, ci.stick }, + { "", ci.stick, "" }, }, }) end