From 524ce1cf77b668ba4c4b8f85458cb14856ccbc4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Ryb=C3=A1rsky?= Date: Sat, 13 Aug 2022 09:01:33 +0200 Subject: [PATCH] remove crafts --- init.lua | 39 ++++----------------------------------- 1 file changed, 4 insertions(+), 35 deletions(-) diff --git a/init.lua b/init.lua index 81100ee..18f91e6 100644 --- a/init.lua +++ b/init.lua @@ -124,7 +124,7 @@ for _,tube in ipairs(nixie_types) do "nixie_tube_anode.png", "nixie_tube_glass.png", }, - use_texture_alpha = true, + use_texture_alpha = "blend", groups = groups, paramtype = "light", paramtype2 = "facedir", @@ -159,7 +159,7 @@ for _,tube in ipairs(nixie_types) do "nixie_tube_anode.png", "nixie_tube_glass.png", }, - use_texture_alpha = true, + use_texture_alpha = "blend", groups = groups, paramtype = "light", paramtype2 = "facedir", @@ -196,7 +196,7 @@ for _,tube in ipairs(nixie_types) do cathode2, "nixie_tube_glass.png", }, - use_texture_alpha = true, + use_texture_alpha = "blend", groups = groups, paramtype = "light", paramtype2 = "facedir", @@ -465,7 +465,7 @@ for i in ipairs(alnum_chars) do "nixie_tube_anode.png", "nixie_tube_glass.png", }, - use_texture_alpha = true, + use_texture_alpha = "blend", groups = groups, paramtype = "light", paramtype2 = "facedir", @@ -489,34 +489,3 @@ for i in ipairs(alnum_chars) do drop = "nixie_tubes:alnum_32" }) end - --- crafts - -minetest.register_craft({ - output = "nixie_tubes:tube_off 4", - recipe = { - { "", "default:glass", "" }, - { "default:glass", "default:sign_wall", "default:glass" }, - { "default:glass", "default:mese_crystal_fragment", "default:glass" } - }, -}) - -minetest.register_craft({ - output = "nixie_tubes:numitron_off 4", - recipe = { - { "", "default:glass", "" }, - { "default:glass", "default:copper_ingot", "default:glass" }, - { "default:glass", "default:mese_crystal_fragment", "default:glass" } - }, -}) - - -minetest.register_craft({ - output = "nixie_tubes:alnum_32 4", - recipe = { - { "", "default:glass", "" }, - { "default:glass", "default:sign_wall", "default:glass" }, - { "default:glass", "default:mese_crystal", "default:glass" } - }, -}) -