From 99f8b3781739f41412eb2a767fbd5880793189f5 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Thu, 24 Mar 2016 18:27:59 +0000 Subject: [PATCH 1/2] Renames mixed gamemodes to have descriptive names Fixes intrigue gamemode name --- code/game/gamemodes/mixed/conflux.dm | 2 +- code/game/gamemodes/mixed/infestation.dm | 2 +- code/game/gamemodes/mixed/intrigue.dm | 2 +- code/game/gamemodes/mixed/lizard.dm | 2 +- code/game/gamemodes/mixed/paranoia.dm | 2 +- code/game/gamemodes/mixed/traitorling.dm | 2 +- code/game/gamemodes/mixed/uprising.dm | 2 +- code/game/gamemodes/mixed/visitors.dm | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/code/game/gamemodes/mixed/conflux.dm b/code/game/gamemodes/mixed/conflux.dm index 2d8753ce1a7..0e9513bbabf 100644 --- a/code/game/gamemodes/mixed/conflux.dm +++ b/code/game/gamemodes/mixed/conflux.dm @@ -1,5 +1,5 @@ /datum/game_mode/conflux - name = "conflux" + name = "Wizard & Cult" round_description = "A space wizard and a cult have invaded the station!" extended_round_description = "Cultists and wizards spawn during this round." config_tag = "conflux" diff --git a/code/game/gamemodes/mixed/infestation.dm b/code/game/gamemodes/mixed/infestation.dm index 346f51967c8..34bd062b803 100644 --- a/code/game/gamemodes/mixed/infestation.dm +++ b/code/game/gamemodes/mixed/infestation.dm @@ -1,5 +1,5 @@ /datum/game_mode/infestation - name = "infestation" + name = "Borers & Changelings" round_description = "There's something in the walls!" extended_round_description = "Two alien antagonists (Cortical Borers or Changelings) spawn during this round." config_tag = "infestation" diff --git a/code/game/gamemodes/mixed/intrigue.dm b/code/game/gamemodes/mixed/intrigue.dm index d08452e6dde..9aad55f5af8 100644 --- a/code/game/gamemodes/mixed/intrigue.dm +++ b/code/game/gamemodes/mixed/intrigue.dm @@ -1,5 +1,5 @@ /datum/game_mode/intrigue - name = "Intrigue" + name = "Traitors & Ninja" round_description = "Crewmembers are contacted by external elements while another infiltrates the colony." extended_round_description = "Traitors and a ninja spawn during this round." config_tag = "intrigue" diff --git a/code/game/gamemodes/mixed/lizard.dm b/code/game/gamemodes/mixed/lizard.dm index c61b9e60942..58f8e4201a6 100644 --- a/code/game/gamemodes/mixed/lizard.dm +++ b/code/game/gamemodes/mixed/lizard.dm @@ -1,5 +1,5 @@ /datum/game_mode/lizard - name = "lizard" + name = "Wizard and Changelings" round_description = "A space wizard and changelings have invaded the station!" extended_round_description = "Changelings and a wizard spawn during this round." config_tag = "lizard" diff --git a/code/game/gamemodes/mixed/paranoia.dm b/code/game/gamemodes/mixed/paranoia.dm index 7c3e903b140..cda62701a03 100644 --- a/code/game/gamemodes/mixed/paranoia.dm +++ b/code/game/gamemodes/mixed/paranoia.dm @@ -1,5 +1,5 @@ /datum/game_mode/paranoia - name = "paranoia" + name = "Malf AI, Renegades & Changelings" round_description = "The AI has malfunctioned, and subversive elements infest the crew..." extended_round_description = "Rampant AIs, renegades and changelings spawn in this mode." config_tag = "paranoia" diff --git a/code/game/gamemodes/mixed/traitorling.dm b/code/game/gamemodes/mixed/traitorling.dm index 4eb4b6c77a2..1ae93d7d384 100644 --- a/code/game/gamemodes/mixed/traitorling.dm +++ b/code/game/gamemodes/mixed/traitorling.dm @@ -1,5 +1,5 @@ /datum/game_mode/traitorling - name = "traitorling" + name = "Traitors & Changelings" round_description = "There are traitors and alien changelings on the station. Do not let the changelings succeed!" extended_round_description = "Traitors and changelings both spawn during this mode." config_tag = "traitorling" diff --git a/code/game/gamemodes/mixed/uprising.dm b/code/game/gamemodes/mixed/uprising.dm index 005d9dce915..d557cfc0755 100644 --- a/code/game/gamemodes/mixed/uprising.dm +++ b/code/game/gamemodes/mixed/uprising.dm @@ -1,5 +1,5 @@ /datum/game_mode/uprising - name = "uprising" + name = "Revolution & Cult" config_tag = "uprising" round_description = "Some crewmembers are attempting to start a revolution while a cult plots in the shadows!" extended_round_description = "Cultists and revolutionaries spawn in this round." diff --git a/code/game/gamemodes/mixed/visitors.dm b/code/game/gamemodes/mixed/visitors.dm index 89099c98782..ed18b670f0f 100644 --- a/code/game/gamemodes/mixed/visitors.dm +++ b/code/game/gamemodes/mixed/visitors.dm @@ -1,5 +1,5 @@ /datum/game_mode/visitors - name = "Visitors" + name = "Wizard & Ninja" round_description = "A space wizard and a ninja have invaded the station!" extended_round_description = "A ninja and wizard spawn during this round." config_tag = "visitors" From e26cb0f52713fc20c7b83c3afcd2b3f84329cfbc Mon Sep 17 00:00:00 2001 From: Yoshax Date: Thu, 24 Mar 2016 22:40:37 +0000 Subject: [PATCH 2/2] Changes lizard to use an & --- code/game/gamemodes/mixed/lizard.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/mixed/lizard.dm b/code/game/gamemodes/mixed/lizard.dm index 58f8e4201a6..9d191b684e1 100644 --- a/code/game/gamemodes/mixed/lizard.dm +++ b/code/game/gamemodes/mixed/lizard.dm @@ -1,5 +1,5 @@ /datum/game_mode/lizard - name = "Wizard and Changelings" + name = "Wizard & Changelings" round_description = "A space wizard and changelings have invaded the station!" extended_round_description = "Changelings and a wizard spawn during this round." config_tag = "lizard"