From 2f95f98ec1effe355acd6ca4c718fc002ee2bc76 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Mon, 4 Apr 2016 19:22:03 +0100 Subject: [PATCH] Adjusts secret game mode possibility formatting --- code/game/gamemodes/game_mode.dm | 4 ---- code/game/gamemodes/gameticker.dm | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 59327bd65e..a0be65c729 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -39,10 +39,6 @@ var/global/list/additional_antag_types = list() /datum/game_mode/New() ..() - // Enforce some formatting. - // This will probably break something. - name = capitalize(lowertext(name)) - config_tag = lowertext(config_tag) /datum/game_mode/Topic(href, href_list[]) if(..()) diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index 54524e3cf8..4c390e7c69 100644 --- a/code/game/gamemodes/gameticker.dm +++ b/code/game/gamemodes/gameticker.dm @@ -112,7 +112,7 @@ var/global/datum/controller/gameticker/ticker tmpmodes+=M.name tmpmodes = sortList(tmpmodes) if(tmpmodes.len) - world << "Possibilities: [english_list(tmpmodes)]" + world << "Possibilities: [english_list(tmpmodes, and_text= "; ", comma_text = "; ")]" else src.mode.announce()