Skip to content

Commit

Permalink
add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed May 9, 2024
1 parent bf29271 commit 34ae01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deathcause.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function displayDeathUnit(unit)
if incident.criminal then
local killer = df.unit.find(incident.criminal)
if killer then
str = str .. (" killed by the %s"):format(getRaceNameSingular(killer.race))
str = str .. (", killed by the %s"):format(getRaceNameSingular(killer.race))
if killer.name.has_name then
str = str .. (" %s"):format(dfhack.TranslateName(killer.name))
end
Expand Down

0 comments on commit 34ae01a

Please sign in to comment.