Fix potential crash

This commit is contained in:
Jean-Patrick Guerrero 2021-01-11 23:27:02 +01:00
parent bb42557455
commit ba05c8d7b3
1 changed files with 2 additions and 1 deletions

View File

@ -1754,7 +1754,8 @@ local function get_award_list(fs, ctn_len, yextra, award_list, awards_unlocked,
local y = yextra - 0.7 + i + (i * 0.3)
local def, progress = award.def, award.progress
local title, desc = def.title, def.description:gsub("%.$", "") or ""
local title = def.title
local desc = def.description and def.description:gsub("%.$", "") or ""
local title_lim, _title = 26
local desc_lim, _desc = 39