mirror of
https://github.com/mt-mods/signs_lib.git
synced 2024-12-25 08:40:17 +01:00
Fix warnings regarding use_texture_alpha
Add use_texture_alpha = "clip" for standard signs. Break Minetest 5.4< compatibility.
This commit is contained in:
parent
d077d23f1a
commit
8b6e41c3fe
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user