diff --git a/game/modules/tome/data/zones/shertul-fortress/grids.lua b/game/modules/tome/data/zones/shertul-fortress/grids.lua index 9125101958cb4d207988ca436cdc12b9364480da..0d9c78e9ff0730ef00969067581c362775ce18f4 100644 --- a/game/modules/tome/data/zones/shertul-fortress/grids.lua +++ b/game/modules/tome/data/zones/shertul-fortress/grids.lua @@ -231,7 +231,7 @@ local dcb = function(self) for damtype, value in pairs(data.damtypes) do if damtype ~= "changed" then local dt = DamageType:get(damtype) if dt then - text[#text+1] = ("%s%s#WHITE#: %d (%d%%)"):format(dt.text_color, dt.name, value, value / data.total * 100) + text[#text+1] = ("%s%s#WHITE#: %d (%d%%)"):format(dt.text_color or "#WHITE#", dt.name, value, value / data.total * 100) end end end text = table.concat(text, "\n")