1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

Use commas as sep

This commit is contained in:
plague006 2019-02-17 12:09:24 -05:00 committed by Matthew Heguy
parent 307ba3684c
commit ce4174b0bd

View File

@ -241,7 +241,7 @@ local function on_entity_died(event)
-- If there was a passenger who was unpunished along with a punished passenger, let the admins know
if player_punished and player_unpunished then
local name_string = table.concat(name_list, ' - ')
local name_string = table.concat(name_list, ', ')
Utils.print_admins({'nuke_control.multiple_passengers', num_passengers, name_string})
end
end