mirror of
https://github.com/minetest-mods/stained_glass.git
synced 2025-01-08 14:50:22 +01:00
Fix deprecated use of use_texture_alpha
This commit is contained in:
parent
a68dfa502c
commit
aee34845cb
4
init.lua
4
init.lua
@ -52,7 +52,7 @@ minetest.register_node("stained_glass:stained_glass", {
|
||||
paramtype2 = "color",
|
||||
palette = "unifieddyes_palette_extended.png",
|
||||
sunlight_propagates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "blend",
|
||||
light_source = myglow,
|
||||
is_ground_content = true,
|
||||
walkable = true,
|
||||
@ -78,7 +78,7 @@ minetest.register_node("stained_glass:stained_trap_glass", {
|
||||
paramtype2 = "color",
|
||||
palette = "unifieddyes_palette_extended.png",
|
||||
sunlight_propagates = true,
|
||||
use_texture_alpha = true,
|
||||
use_texture_alpha = "blend",
|
||||
light_source = myglow,
|
||||
is_ground_content = true,
|
||||
walkable = false,
|
||||
|
Loading…
Reference in New Issue
Block a user