From c0a11e247729088c95065f4af78dea1b5cc29cd8 Mon Sep 17 00:00:00 2001 From: Joachim Stolberg Date: Sun, 7 Aug 2022 16:03:33 +0200 Subject: [PATCH] Fix use_texture_alpha issues --- basis/mark.lua | 2 +- basis/mark2.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/mark.lua b/basis/mark.lua index 9400789..8058b1f 100644 --- a/basis/mark.lua +++ b/basis/mark.lua @@ -82,7 +82,7 @@ minetest.register_entity(":techage:region_cube", { initial_properties = { visual = "upright_sprite", textures = {"techage_cube_mark.png"}, - use_texture_alpha = techage.BLEND, + use_texture_alpha = true, physical = false, glow = 12, }, diff --git a/basis/mark2.lua b/basis/mark2.lua index 449765b..ab1124e 100644 --- a/basis/mark2.lua +++ b/basis/mark2.lua @@ -70,7 +70,7 @@ minetest.register_entity(":techage:position_cube", { "techage_cube_mark.png", "techage_cube_mark.png", }, - use_texture_alpha = techage.BLEND, + use_texture_alpha = true, physical = false, visual_size = {x = 1.1, y = 1.1}, collisionbox = {-0.55,-0.55,-0.55, 0.55,0.55,0.55},