From 7080b97b51945867823ba9c819e7a0bc55042cf2 Mon Sep 17 00:00:00 2001 From: mazes 80 Date: Sun, 14 Aug 2022 15:52:47 +0200 Subject: [PATCH 1/3] Remove deprecated depends.txt --- depends.txt | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 depends.txt diff --git a/depends.txt b/depends.txt deleted file mode 100644 index 06ffbfd..0000000 --- a/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -default -basic_materials? -technic? -digilines? \ No newline at end of file From ddc5bfe5ce29982d53672f71b18054211f5496da Mon Sep 17 00:00:00 2001 From: mazes 80 Date: Sun, 14 Aug 2022 15:56:09 +0200 Subject: [PATCH 2/3] Textures: set use_texture_alpha at required place --- beacon.lua | 1 + receiver_station.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/beacon.lua b/beacon.lua index 2ff8fcc..4f4c9ab 100644 --- a/beacon.lua +++ b/beacon.lua @@ -8,6 +8,7 @@ minetest.register_node("ham_radio:beacon", { "ham_radio_transmitter_side.png", "ham_radio_beacon_front.png" }, + use_textures_alpha = "clip", groups = {cracky=2,oddly_breakable_by_hand=2}, sounds = default.node_sound_metal_defaults(), paramtype2 = "facedir", diff --git a/receiver_station.lua b/receiver_station.lua index 8da7b06..4b5b3a7 100644 --- a/receiver_station.lua +++ b/receiver_station.lua @@ -17,6 +17,7 @@ minetest.register_node("ham_radio:receiver", { "ham_radio_receiver_side.png", "ham_radio_receiver_front.png" }, + use_texture_alpha = "clip", groups = {cracky=2,oddly_breakable_by_hand=2}, sounds = default.node_sound_metal_defaults(), paramtype2 = "facedir", From d3b714dd6aff8859f1d9bc65251067f9b8931c76 Mon Sep 17 00:00:00 2001 From: mazes 80 <> Date: Sat, 3 Sep 2022 21:06:36 +0200 Subject: [PATCH 3/3] Fix: use_textures_alpha typo --- beacon.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon.lua b/beacon.lua index 4f4c9ab..1275a7b 100644 --- a/beacon.lua +++ b/beacon.lua @@ -8,7 +8,7 @@ minetest.register_node("ham_radio:beacon", { "ham_radio_transmitter_side.png", "ham_radio_beacon_front.png" }, - use_textures_alpha = "clip", + use_texture_alpha = "clip", groups = {cracky=2,oddly_breakable_by_hand=2}, sounds = default.node_sound_metal_defaults(), paramtype2 = "facedir",