Skip to content

Commit

Permalink
Merge pull request #10 from sys4-fr/master
Browse files Browse the repository at this point in the history
Fix deprecated use of use_texture_alpha
  • Loading branch information
andersje committed Mar 22, 2021
2 parents a68dfa5 + aee3484 commit aa9e57e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit aa9e57e

Please sign in to comment.