From ce4174b0bdec6a8b31d0cc64ea8733cdff6865d6 Mon Sep 17 00:00:00 2001 From: plague006 Date: Sun, 17 Feb 2019 12:09:24 -0500 Subject: [PATCH] Use commas as sep --- features/nuke_control.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/nuke_control.lua b/features/nuke_control.lua index 4a3888c4..3ca0fb7f 100644 --- a/features/nuke_control.lua +++ b/features/nuke_control.lua @@ -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