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()