Skip to content
Snippets Groups Projects
Commit 3d7636c4 authored by Chris Davidson's avatar Chris Davidson
Browse files

Color total damage in the combat log

parent 92d66074
No related branches found
No related tags found
No related merge requests found
......@@ -1664,7 +1664,7 @@ function _M:displayDelayedLogDamage()
for src, tgts in pairs(psrcs) do
for target, dams in pairs(tgts) do
if #dams.descs > 1 then
game.uiset.logdisplay(self:logMessage(src, dams.srcSeen, target, dams.tgtSeen, "#Source# hits #Target# for %s (%0.0f total damage)%s.", table.concat(dams.descs, ", "), dams.total, dams.healing<0 and (" #LIGHT_GREEN#[%0.0f healing]#LAST#"):format(-dams.healing) or ""))
game.uiset.logdisplay(self:logMessage(src, dams.srcSeen, target, dams.tgtSeen, "#Source# hits #Target# for %s (#RED#%0.0f#LAST# total damage)%s.", table.concat(dams.descs, ", "), dams.total, dams.healing<0 and (" #LIGHT_GREEN#[%0.0f healing]#LAST#"):format(-dams.healing) or ""))
else
if dams.healing >= 0 then
game.uiset.logdisplay(self:logMessage(src, dams.srcSeen, target, dams.tgtSeen, "#Source# hits #Target# for %s damage.", table.concat(dams.descs, ", ")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment