Fix character cutoff in standing signs

This commit is contained in:
Wuzzy 2019-03-21 12:52:13 +01:00
parent d12356794f
commit 8019315eaa
1 changed files with 2 additions and 2 deletions

View File

@ -121,9 +121,9 @@ local generate_texture = function(lines, signnodename)
local texture = "[combine:"..SIGN_WIDTH.."x"..SIGN_WIDTH
local ypos
if signnodename == "mcl_signs:wall_sign" then
ypos = 29
ypos = 30
else
ypos = -2
ypos = 0
end
for i = 1, #lines do
texture = texture..generate_line(lines[i], ypos)