Skip to content

Commit

Permalink
Fix out-of-bounds in 'combine' texture modifier
Browse files Browse the repository at this point in the history
Co-authored-by: tenplus1 <[email protected]>
  • Loading branch information
Niklp09 and tenplus1 committed Feb 26, 2024
1 parent e387808 commit 1fdff47
Show file tree
Hide file tree
Showing 626 changed files with 36 additions and 26 deletions.
52 changes: 26 additions & 26 deletions api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -467,15 +467,6 @@ signs_lib.charwidth_wide32 = build_char_db(32)

local math_max = math.max

local function fill_line(x, y, w, c, font_size, colorbgw)
c = c or "0"
local tex = { }
for xx = 0, math.max(0, w), colorbgw do
table.insert(tex, (":%d,%d=signs_lib_color_"..font_size.."px_%s.png"):format(x + xx, y, c))
end
return table.concat(tex)
end

-- make char texture file name
-- if texture file does not exist use fallback texture instead
local function char_tex(font_name, ch)
Expand Down Expand Up @@ -511,6 +502,26 @@ local function char_tex_wide(font_name, ch)
end
end

-- sign colour table
local colgrid = {
["0"] = "000000", -- black
["1"] = "000080", -- blue
["2"] = "008000", -- dark green
["3"] = "008080", -- dark cyan
["4"] = "800000", -- red
["5"] = "800080", -- purple
["6"] = "804000", -- brown
["7"] = "808080", -- light grey
["8"] = "404040", -- dark grey
["9"] = "8080ff", -- light blue
["A"] = "80ff80", -- green
["B"] = "80ffff", -- cyan
["C"] = "ff8080", -- skin pink
["D"] = "ff80ff", -- pink
["E"] = "ffff00", -- yellow
["F"] = "ffffff" -- white
}

local function make_line_texture(line, lineno, pos, line_width, line_height, cwidth_tab, font_size, colorbgw, cwidth_tab_wide, force_unicode_font)
local width = 0
local maxw = 0
Expand Down Expand Up @@ -647,36 +658,25 @@ local function make_line_texture(line, lineno, pos, line_width, line_height, cwi
local xpos = start_xpos
local ypos = (line_height + def.line_spacing)* lineno + def.y_offset

cur_color = nil

for word_i, word in ipairs(words) do
local xoffs = (xpos - start_xpos)
if (xoffs > 0) and ((xoffs + word.w) > maxw) then
table.insert(texture, fill_line(xpos, ypos, maxw, "n", font_size, colorbgw))
xpos = start_xpos
ypos = ypos + line_height + def.line_spacing
lineno = lineno + 1
if lineno >= def.number_of_lines then break end
table.insert(texture, fill_line(xpos, ypos, maxw, cur_color, font_size, colorbgw))
end
for ch_i, ch in ipairs(word.chars) do
if ch.col ~= cur_color then
cur_color = ch.col
table.insert(texture, fill_line(xpos + ch.off, ypos, maxw, cur_color, font_size, colorbgw))
end
table.insert(texture, (":%d,%d=%s"):format(xpos + ch.off, ypos, ch.tex))

-- colorize character texture
local newtex = ch.tex .. '\\^[colorize\\:#' .. colgrid[ch.col]

table.insert(texture, (":%d,%d=%s"):format(xpos + ch.off, ypos, newtex))
end
table.insert(
texture,
(":%d,%d="):format(xpos + word.w, ypos) .. char_tex(font_name, " ")
)
xpos = xpos + word.w + cwidth_tab[" "]
if xpos >= (line_width + cwidth_tab[" "]) then break end
end

table.insert(texture, fill_line(xpos, ypos, maxw, "n", font_size, colorbgw))
table.insert(texture, fill_line(start_xpos, ypos + line_height, maxw, "n", font_size, colorbgw))

return table.concat(texture), lineno
end

Expand Down Expand Up @@ -721,7 +721,7 @@ function signs_lib.make_sign_texture(lines, pos)
table.insert(texture, linetex)
lineno = ln + 1
end
table.insert(texture, "^[makealpha:0,0,0")

return table.concat(texture, "")
end

Expand Down
Binary file modified textures/signs_lib_font_16px_00.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00c0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00c4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00c6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00c7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00c8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00c9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00ca.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00d3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00d4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00d6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00d9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00dc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00df.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00e0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00e4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00e6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00e7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00e8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00e9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00ea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00f3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00f4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00f6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00f9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified textures/signs_lib_font_16px_00fc.png
Binary file modified textures/signs_lib_font_16px_0104.png
Binary file modified textures/signs_lib_font_16px_0105.png
Binary file modified textures/signs_lib_font_16px_0106.png
Binary file modified textures/signs_lib_font_16px_0107.png
Binary file modified textures/signs_lib_font_16px_0118.png
Binary file modified textures/signs_lib_font_16px_0119.png
Binary file modified textures/signs_lib_font_16px_0141.png
Binary file modified textures/signs_lib_font_16px_0142.png
Binary file modified textures/signs_lib_font_16px_015a.png
Binary file modified textures/signs_lib_font_16px_015b.png
Binary file modified textures/signs_lib_font_16px_0179.png
Binary file modified textures/signs_lib_font_16px_017a.png
Binary file modified textures/signs_lib_font_16px_017b.png
Binary file modified textures/signs_lib_font_16px_017c.png
Binary file modified textures/signs_lib_font_16px_20.png
Binary file modified textures/signs_lib_font_16px_21.png
Binary file modified textures/signs_lib_font_16px_22.png
Binary file modified textures/signs_lib_font_16px_23.png
Binary file modified textures/signs_lib_font_16px_24.png
Binary file modified textures/signs_lib_font_16px_25.png
Binary file modified textures/signs_lib_font_16px_26.png
Binary file modified textures/signs_lib_font_16px_27.png
Binary file modified textures/signs_lib_font_16px_28.png
Binary file modified textures/signs_lib_font_16px_29.png
Binary file modified textures/signs_lib_font_16px_2a.png
Binary file modified textures/signs_lib_font_16px_2b.png
Binary file modified textures/signs_lib_font_16px_2c.png
Binary file modified textures/signs_lib_font_16px_2d.png
Binary file modified textures/signs_lib_font_16px_2e.png
Binary file modified textures/signs_lib_font_16px_2f.png
Binary file modified textures/signs_lib_font_16px_30.png
Binary file modified textures/signs_lib_font_16px_31.png
Binary file modified textures/signs_lib_font_16px_32.png
Binary file modified textures/signs_lib_font_16px_33.png
Binary file modified textures/signs_lib_font_16px_34.png
Binary file modified textures/signs_lib_font_16px_35.png
Binary file modified textures/signs_lib_font_16px_36.png
Binary file modified textures/signs_lib_font_16px_37.png
Binary file modified textures/signs_lib_font_16px_38.png
Binary file modified textures/signs_lib_font_16px_39.png
Binary file modified textures/signs_lib_font_16px_3a.png
Binary file modified textures/signs_lib_font_16px_3b.png
Binary file modified textures/signs_lib_font_16px_3c.png
Binary file modified textures/signs_lib_font_16px_3d.png
Binary file modified textures/signs_lib_font_16px_3e.png
Binary file modified textures/signs_lib_font_16px_3f.png
Binary file modified textures/signs_lib_font_16px_40.png
Binary file modified textures/signs_lib_font_16px_41.png
Binary file modified textures/signs_lib_font_16px_42.png
Binary file modified textures/signs_lib_font_16px_43.png
Binary file modified textures/signs_lib_font_16px_44.png
Binary file modified textures/signs_lib_font_16px_45.png
Binary file modified textures/signs_lib_font_16px_46.png
Binary file modified textures/signs_lib_font_16px_47.png
Binary file modified textures/signs_lib_font_16px_48.png
Binary file modified textures/signs_lib_font_16px_49.png
Binary file modified textures/signs_lib_font_16px_4a.png
Binary file modified textures/signs_lib_font_16px_4b.png
Binary file modified textures/signs_lib_font_16px_4c.png
Binary file modified textures/signs_lib_font_16px_4d.png
Binary file modified textures/signs_lib_font_16px_4e.png
Binary file modified textures/signs_lib_font_16px_4f.png
Binary file modified textures/signs_lib_font_16px_50.png
Binary file modified textures/signs_lib_font_16px_51.png
Binary file modified textures/signs_lib_font_16px_52.png
Binary file modified textures/signs_lib_font_16px_53.png
Binary file modified textures/signs_lib_font_16px_54.png
Binary file modified textures/signs_lib_font_16px_55.png
Binary file modified textures/signs_lib_font_16px_56.png
Binary file modified textures/signs_lib_font_16px_57.png
Binary file modified textures/signs_lib_font_16px_58.png
Binary file modified textures/signs_lib_font_16px_59.png
Binary file modified textures/signs_lib_font_16px_5a.png
Binary file modified textures/signs_lib_font_16px_5b.png
Binary file modified textures/signs_lib_font_16px_5c.png
Binary file modified textures/signs_lib_font_16px_5d.png
Binary file modified textures/signs_lib_font_16px_5e.png
Binary file modified textures/signs_lib_font_16px_5f.png
Binary file modified textures/signs_lib_font_16px_60.png
Binary file modified textures/signs_lib_font_16px_61.png
Binary file modified textures/signs_lib_font_16px_62.png
Binary file modified textures/signs_lib_font_16px_63.png
Binary file modified textures/signs_lib_font_16px_64.png
Binary file modified textures/signs_lib_font_16px_65.png
Binary file modified textures/signs_lib_font_16px_66.png
Binary file modified textures/signs_lib_font_16px_67.png
Binary file modified textures/signs_lib_font_16px_68.png
Binary file modified textures/signs_lib_font_16px_69.png
Binary file modified textures/signs_lib_font_16px_6a.png
Binary file modified textures/signs_lib_font_16px_6b.png
Binary file modified textures/signs_lib_font_16px_6c.png
Binary file modified textures/signs_lib_font_16px_6d.png
Binary file modified textures/signs_lib_font_16px_6e.png
Binary file modified textures/signs_lib_font_16px_6f.png
Binary file modified textures/signs_lib_font_16px_70.png
Binary file modified textures/signs_lib_font_16px_71.png
Binary file modified textures/signs_lib_font_16px_72.png
Binary file modified textures/signs_lib_font_16px_73.png
Binary file modified textures/signs_lib_font_16px_74.png
Binary file modified textures/signs_lib_font_16px_75.png
Binary file modified textures/signs_lib_font_16px_76.png
Binary file modified textures/signs_lib_font_16px_77.png
Binary file modified textures/signs_lib_font_16px_78.png
Binary file modified textures/signs_lib_font_16px_79.png
Binary file modified textures/signs_lib_font_16px_7a.png
Binary file modified textures/signs_lib_font_16px_7b.png
Binary file modified textures/signs_lib_font_16px_7c.png
Binary file modified textures/signs_lib_font_16px_7d.png
Binary file modified textures/signs_lib_font_16px_7e.png
Binary file modified textures/signs_lib_font_16px_81.png
Binary file modified textures/signs_lib_font_16px_82.png
Binary file modified textures/signs_lib_font_16px_83.png
Binary file modified textures/signs_lib_font_16px_84.png
Binary file modified textures/signs_lib_font_16px_85.png
Binary file modified textures/signs_lib_font_16px_86.png
Binary file modified textures/signs_lib_font_16px_87.png
Binary file modified textures/signs_lib_font_16px_88.png
Binary file modified textures/signs_lib_font_16px_8a.png
Binary file modified textures/signs_lib_font_16px_8b.png
Binary file modified textures/signs_lib_font_16px_8c.png
Binary file modified textures/signs_lib_font_16px_8d.png
Binary file modified textures/signs_lib_font_16px_8e.png
Binary file modified textures/signs_lib_font_16px_8f.png
Binary file modified textures/signs_lib_font_16px_90.png
Binary file modified textures/signs_lib_font_16px_91.png
Binary file modified textures/signs_lib_font_16px_a8.png
Binary file modified textures/signs_lib_font_16px_b8.png
Binary file modified textures/signs_lib_font_16px_b9.png
Binary file modified textures/signs_lib_font_16px_c0.png
Binary file modified textures/signs_lib_font_16px_c1.png
Binary file modified textures/signs_lib_font_16px_c2.png
Binary file modified textures/signs_lib_font_16px_c3.png
Binary file modified textures/signs_lib_font_16px_c4.png
Binary file modified textures/signs_lib_font_16px_c5.png
Binary file modified textures/signs_lib_font_16px_c6.png
Binary file modified textures/signs_lib_font_16px_c7.png
Binary file modified textures/signs_lib_font_16px_c8.png
Binary file modified textures/signs_lib_font_16px_c9.png
Binary file modified textures/signs_lib_font_16px_ca.png
Binary file modified textures/signs_lib_font_16px_cb.png
Binary file modified textures/signs_lib_font_16px_cc.png
Binary file modified textures/signs_lib_font_16px_cd.png
Binary file modified textures/signs_lib_font_16px_ce.png
Binary file modified textures/signs_lib_font_16px_cf.png
Binary file modified textures/signs_lib_font_16px_d0.png
Binary file modified textures/signs_lib_font_16px_d1.png
Binary file modified textures/signs_lib_font_16px_d2.png
Binary file modified textures/signs_lib_font_16px_d3.png
Binary file modified textures/signs_lib_font_16px_d4.png
Binary file modified textures/signs_lib_font_16px_d5.png
Binary file modified textures/signs_lib_font_16px_d6.png
Binary file modified textures/signs_lib_font_16px_d7.png
Binary file modified textures/signs_lib_font_16px_d8.png
Binary file modified textures/signs_lib_font_16px_d9.png
Binary file modified textures/signs_lib_font_16px_da.png
Binary file modified textures/signs_lib_font_16px_db.png
Binary file modified textures/signs_lib_font_16px_dc.png
Binary file modified textures/signs_lib_font_16px_dd.png
Binary file modified textures/signs_lib_font_16px_de.png
Binary file modified textures/signs_lib_font_16px_df.png
Binary file modified textures/signs_lib_font_16px_e0.png
Binary file modified textures/signs_lib_font_16px_e1.png
Binary file modified textures/signs_lib_font_16px_e2.png
Binary file modified textures/signs_lib_font_16px_e3.png
Binary file modified textures/signs_lib_font_16px_e4.png
Binary file modified textures/signs_lib_font_16px_e5.png
Binary file modified textures/signs_lib_font_16px_e6.png
Binary file modified textures/signs_lib_font_16px_e7.png
Binary file modified textures/signs_lib_font_16px_e8.png
Binary file modified textures/signs_lib_font_16px_e9.png
Binary file modified textures/signs_lib_font_16px_ea.png
Binary file modified textures/signs_lib_font_16px_eb.png
Binary file modified textures/signs_lib_font_16px_ec.png
Binary file modified textures/signs_lib_font_16px_ed.png
Binary file modified textures/signs_lib_font_16px_ee.png
Binary file modified textures/signs_lib_font_16px_ef.png
Binary file modified textures/signs_lib_font_16px_f0.png
Binary file modified textures/signs_lib_font_16px_f1.png
Binary file modified textures/signs_lib_font_16px_f2.png
Binary file modified textures/signs_lib_font_16px_f3.png
Binary file modified textures/signs_lib_font_16px_f4.png
Binary file modified textures/signs_lib_font_16px_f5.png
Binary file modified textures/signs_lib_font_16px_f6.png
Binary file modified textures/signs_lib_font_16px_f7.png
Binary file modified textures/signs_lib_font_16px_f8.png
Binary file modified textures/signs_lib_font_16px_f9.png
Binary file modified textures/signs_lib_font_16px_fa.png
Binary file modified textures/signs_lib_font_16px_fb.png
Binary file modified textures/signs_lib_font_16px_fc.png
Binary file modified textures/signs_lib_font_16px_fd.png
Binary file modified textures/signs_lib_font_16px_fe.png
Binary file modified textures/signs_lib_font_16px_ff.png
Binary file modified textures/signs_lib_font_32px_00c0.png
Binary file modified textures/signs_lib_font_32px_00c4.png
Binary file modified textures/signs_lib_font_32px_00c6.png
Binary file modified textures/signs_lib_font_32px_00c7.png
Binary file modified textures/signs_lib_font_32px_00c8.png
Binary file modified textures/signs_lib_font_32px_00c9.png
Binary file modified textures/signs_lib_font_32px_00ca.png
Binary file modified textures/signs_lib_font_32px_00d3.png
Binary file modified textures/signs_lib_font_32px_00d4.png
Binary file modified textures/signs_lib_font_32px_00d6.png
Binary file modified textures/signs_lib_font_32px_00d9.png
Binary file modified textures/signs_lib_font_32px_00dc.png
Binary file modified textures/signs_lib_font_32px_00df.png
Binary file modified textures/signs_lib_font_32px_00e0.png
Binary file modified textures/signs_lib_font_32px_00e4.png
Binary file modified textures/signs_lib_font_32px_00e6.png
Binary file modified textures/signs_lib_font_32px_00e7.png
Binary file modified textures/signs_lib_font_32px_00e8.png
Binary file modified textures/signs_lib_font_32px_00e9.png
Binary file modified textures/signs_lib_font_32px_00ea.png
Binary file modified textures/signs_lib_font_32px_00f3.png
Binary file modified textures/signs_lib_font_32px_00f4.png
Binary file modified textures/signs_lib_font_32px_00f6.png
Binary file modified textures/signs_lib_font_32px_00f9.png
Binary file modified textures/signs_lib_font_32px_00fc.png
Binary file modified textures/signs_lib_font_32px_0104.png
Binary file modified textures/signs_lib_font_32px_0105.png
Binary file modified textures/signs_lib_font_32px_0106.png
Binary file modified textures/signs_lib_font_32px_0107.png
Binary file modified textures/signs_lib_font_32px_0118.png
Binary file modified textures/signs_lib_font_32px_0119.png
Binary file modified textures/signs_lib_font_32px_0141.png
Binary file modified textures/signs_lib_font_32px_0142.png
Binary file modified textures/signs_lib_font_32px_015a.png
Binary file modified textures/signs_lib_font_32px_015b.png
Binary file modified textures/signs_lib_font_32px_0179.png
Binary file modified textures/signs_lib_font_32px_017a.png
Binary file modified textures/signs_lib_font_32px_017b.png
Binary file modified textures/signs_lib_font_32px_017c.png
Binary file modified textures/signs_lib_font_32px_20.png
Binary file modified textures/signs_lib_font_32px_21.png
Binary file modified textures/signs_lib_font_32px_22.png
Binary file modified textures/signs_lib_font_32px_23.png
Binary file modified textures/signs_lib_font_32px_24.png
Binary file modified textures/signs_lib_font_32px_25.png
Binary file modified textures/signs_lib_font_32px_26.png
Binary file modified textures/signs_lib_font_32px_27.png
Binary file modified textures/signs_lib_font_32px_28.png
Binary file modified textures/signs_lib_font_32px_29.png
Binary file modified textures/signs_lib_font_32px_2a.png
Binary file modified textures/signs_lib_font_32px_2b.png
Binary file modified textures/signs_lib_font_32px_2c.png
Binary file modified textures/signs_lib_font_32px_2d.png
Binary file modified textures/signs_lib_font_32px_2e.png
Binary file modified textures/signs_lib_font_32px_2f.png
Binary file modified textures/signs_lib_font_32px_30.png
Binary file modified textures/signs_lib_font_32px_31.png
Binary file modified textures/signs_lib_font_32px_32.png
Binary file modified textures/signs_lib_font_32px_33.png
Binary file modified textures/signs_lib_font_32px_34.png
Binary file modified textures/signs_lib_font_32px_35.png
Binary file modified textures/signs_lib_font_32px_36.png
Binary file modified textures/signs_lib_font_32px_37.png
Binary file modified textures/signs_lib_font_32px_38.png
Binary file modified textures/signs_lib_font_32px_39.png
Binary file modified textures/signs_lib_font_32px_3a.png
Binary file modified textures/signs_lib_font_32px_3b.png
Binary file modified textures/signs_lib_font_32px_3c.png
Binary file modified textures/signs_lib_font_32px_3d.png
Binary file modified textures/signs_lib_font_32px_3e.png
Binary file modified textures/signs_lib_font_32px_3f.png
Binary file modified textures/signs_lib_font_32px_40.png
Binary file modified textures/signs_lib_font_32px_41.png
Binary file modified textures/signs_lib_font_32px_42.png
Binary file modified textures/signs_lib_font_32px_43.png
Binary file modified textures/signs_lib_font_32px_44.png
Binary file modified textures/signs_lib_font_32px_45.png
Binary file modified textures/signs_lib_font_32px_46.png
Binary file modified textures/signs_lib_font_32px_47.png
Binary file modified textures/signs_lib_font_32px_48.png
Binary file modified textures/signs_lib_font_32px_49.png
Loading

0 comments on commit 1fdff47

Please sign in to comment.