From 48a4e069f9ce2d5c8e8e44e2e22e4957d6fd9b11 Mon Sep 17 00:00:00 2001 From: Emojigit <55009343+Emojigit@users.noreply.github.com> Date: Wed, 28 Jul 2021 14:01:14 +0800 Subject: [PATCH] craft bugfix --- mods/ITEMS/mcl_amethyst/init.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mods/ITEMS/mcl_amethyst/init.lua b/mods/ITEMS/mcl_amethyst/init.lua index 548259d3a..87aa7d7c3 100644 --- a/mods/ITEMS/mcl_amethyst/init.lua +++ b/mods/ITEMS/mcl_amethyst/init.lua @@ -1,4 +1,3 @@ --- Copyright (c) 2021 Cato Yiu (GPLv3) local S = minetest.get_translator(minetest.get_current_modname()) -- Amethyst block @@ -91,7 +90,7 @@ local bud_def = { } for x,y in pairs(bud_def) do minetest.register_node("mcl_amethyst:" .. y[1] .. "_amethyst_bud",{ - description = y[2] .. " Amethyst Bud", + description = y[2] .. "Amethyst Bud", _mcl_hardness = 1.5, _mcl_blast_resistance = 1.5, drop = "", @@ -132,7 +131,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "mcl_amethyst:tinted_glass", + output = "mcl_amethyst:tinted_glass 2", recipe = { {"","mcl_amethyst:amethyst_shard",""}, {"mcl_amethyst:amethyst_shard","mcl_core:glass","mcl_amethyst:amethyst_shard",},