diff options
author | sfan5 <sfan5@live.de> | 2021-01-17 02:25:33 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2021-01-29 17:34:41 +0100 |
commit | 5c005ad081a23a1c048ef2c1066f60e0e041c956 (patch) | |
tree | 6f9e8bb21077b459b483c2a2750c8db1069d5913 /games/devtest/mods/testnodes/properties.lua | |
parent | 83229921e5f378625d9ef63ede3dffbe778e1798 (diff) | |
download | minetest-5c005ad081a23a1c048ef2c1066f60e0e041c956.tar.gz minetest-5c005ad081a23a1c048ef2c1066f60e0e041c956.tar.bz2 minetest-5c005ad081a23a1c048ef2c1066f60e0e041c956.zip |
devtest: Fix deprecated alpha usage
Diffstat (limited to 'games/devtest/mods/testnodes/properties.lua')
-rw-r--r-- | games/devtest/mods/testnodes/properties.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/devtest/mods/testnodes/properties.lua b/games/devtest/mods/testnodes/properties.lua index c6331a6ed..a52cd1d6f 100644 --- a/games/devtest/mods/testnodes/properties.lua +++ b/games/devtest/mods/testnodes/properties.lua @@ -114,7 +114,7 @@ minetest.register_node("testnodes:liquid_nojump", { {name = "testnodes_liquidsource.png^[colorize:#FF0000:127", backface_culling = false}, {name = "testnodes_liquidsource.png^[colorize:#FF0000:127", backface_culling = true}, }, - use_texture_alpha = true, + use_texture_alpha = "blend", paramtype = "light", pointable = false, liquids_pointable = true, @@ -142,7 +142,7 @@ minetest.register_node("testnodes:liquidflowing_nojump", { {name = "testnodes_liquidflowing.png^[colorize:#FF0000:127", backface_culling = false}, {name = "testnodes_liquidflowing.png^[colorize:#FF0000:127", backface_culling = false}, }, - use_texture_alpha = true, + use_texture_alpha = "blend", paramtype = "light", paramtype2 = "flowingliquid", pointable = false, |