TExture alpha: fix deprecation warning.

The alpha values here are now no longer used. They are roughly the same
as the original value in the alpha channel, so this looks the same from
my perspective.
This commit is contained in:
Auke Kok 2021-07-07 14:17:27 -07:00
parent b07f74eaff
commit 8d218d43d6

View File

@ -1010,7 +1010,8 @@ minetest.register_node("nodes:water_source", {
backface_culling = false,
},
},
alpha = 160,
--alpha = 160,
use_texture_alpha = "blend",
paramtype = "light",
walkable = false,
pointable = false,
@ -1054,7 +1055,8 @@ minetest.register_node("nodes:water_flowing", {
},
},
},
alpha = 160,
--alpha = 160,
use_texture_alpha = "blend",
paramtype = "light",
paramtype2 = "flowingliquid",
walkable = false,
@ -1101,7 +1103,8 @@ minetest.register_node("nodes:river_water_source", {
backface_culling = false,
},
},
alpha = 160,
--alpha = 160,
use_texture_alpha = "blend",
paramtype = "light",
walkable = false,
pointable = false,
@ -1147,7 +1150,8 @@ minetest.register_node("nodes:river_water_flowing", {
},
},
},
alpha = 160,
--alpha = 160,
use_texture_alpha = "blend",
paramtype = "light",
paramtype2 = "flowingliquid",
walkable = false,