fix future API usage of bold+italic pr

This commit is contained in:
AFCMS 2021-06-02 11:07:31 +02:00
parent c8102838cb
commit 7e64470f70
1 changed files with 5 additions and 17 deletions

View File

@ -64,22 +64,10 @@ function mcl_title.set(player, type, data)
player:hud_remove(huds_idx[type][player])
end
--TODO: enable this code then Fleckenstein's pr get merged
--TODO: be sure API is correctly used
--[[
local bold
if data.bold == "true" then
bold = true
else
bold = false
end
--TODO: enable this code then Fleckenstein's pr get merged (in about 5-6 years)
local italic
if data.italic == "true" then
italic = true
else
italic = false
end]]
--if data.bold == nil then data.bold = false end
--if data.italic == nil then data.italic = false end
local stay = mcl_title.params_get(player).stay
@ -88,8 +76,8 @@ function mcl_title.set(player, type, data)
position = mcl_title.layout[type].position,
alignment = mcl_title.layout[type].alignment,
text = data.text,
--bold = bold,
--italic = italic,
--bold = data.bold,
--italic = data.italic,
size = {x = mcl_title.layout[type].size},
number = hex_color,
z_index = 1100,