forked from VoxeLibre/VoxeLibre
Fix character cutoff in standing signs
This commit is contained in:
parent
d12356794f
commit
8019315eaa
|
@ -121,9 +121,9 @@ local generate_texture = function(lines, signnodename)
|
||||||
local texture = "[combine:"..SIGN_WIDTH.."x"..SIGN_WIDTH
|
local texture = "[combine:"..SIGN_WIDTH.."x"..SIGN_WIDTH
|
||||||
local ypos
|
local ypos
|
||||||
if signnodename == "mcl_signs:wall_sign" then
|
if signnodename == "mcl_signs:wall_sign" then
|
||||||
ypos = 29
|
ypos = 30
|
||||||
else
|
else
|
||||||
ypos = -2
|
ypos = 0
|
||||||
end
|
end
|
||||||
for i = 1, #lines do
|
for i = 1, #lines do
|
||||||
texture = texture..generate_line(lines[i], ypos)
|
texture = texture..generate_line(lines[i], ypos)
|
||||||
|
|
Loading…
Reference in New Issue