Fix warnings regarding use_texture_alpha

Add use_texture_alpha = "clip" for standard signs.
Break Minetest 5.4< compatibility.
This commit is contained in:
bri cassa 2021-02-28 12:27:34 +01:00
parent d077d23f1a
commit 8b6e41c3fe
1 changed files with 4 additions and 2 deletions

View File

@ -14,7 +14,8 @@ signs_lib.register_sign("default:sign_wall_wood", {
allow_widefont = true,
allow_onpole = true,
allow_onpole_horizontal = true,
allow_yard = true
allow_yard = true,
use_texture_alpha = "clip",
})
signs_lib.register_sign("default:sign_wall_steel", {
@ -35,7 +36,8 @@ signs_lib.register_sign("default:sign_wall_steel", {
allow_widefont = true,
allow_onpole = true,
allow_onpole_horizontal = true,
allow_yard = true
allow_yard = true,
use_texture_alpha = "clip",
})
minetest.register_alias("signs:sign_hanging", "default:sign_wood_hanging")