forked from mtcontrib/minetest-mod-sea
[noairblocks] Fix deprecated use of alpha
This commit is contained in:
parent
7e7561ab93
commit
49263a7eee
@ -17,7 +17,7 @@ minetest.register_node("noairblocks:water_flowingx", {
|
|||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=0.8}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
alpha = 0,
|
use_texture_alpha = "blend",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "flowingliquid",
|
paramtype2 = "flowingliquid",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
@ -50,7 +50,7 @@ minetest.register_node("noairblocks:water_sourcex", {
|
|||||||
backface_culling = false,
|
backface_culling = false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
alpha = 0,
|
use_texture_alpha = "blend",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
pointable = false,
|
pointable = false,
|
||||||
|
Loading…
Reference in New Issue
Block a user