From e10c657011a4092d9e63c788a76df9d2b01e970b Mon Sep 17 00:00:00 2001 From: Neerti Date: Sun, 2 Oct 2016 13:48:49 -0400 Subject: [PATCH] Removes Ninja & Malf Voting Malf is a terrible gamemode, the code is unmaintained, and it's not very fun for the crew or the AI. The AI can still be evil, and more effectively, as a traitor. At some point I plan to give traitorAIs some malf powers, but the malf mode needs to go, and I meant to do this literally a year ago. Ninja will no longer be votable, because one ninja cannot carry the round. The age of solo-antags is coming to an end, because solo-antagonists have been proven to be ineffective, and place massive pressure on the person playing the antag. It also makes it difficult to balance one person to be able to fight the whole station without it being shit for the station or shit for the antag. To fix that, Ninja is no longer a solo-antag. The other ninja modes like Intrigue and Visitors remain, as the ninja should have more breathing room, since other baddies exist. --- code/game/gamemodes/malfunction/malfunction.dm | 1 + code/game/gamemodes/ninja/ninja.dm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/malfunction/malfunction.dm b/code/game/gamemodes/malfunction/malfunction.dm index 835185fdcd..3a0ccec124 100644 --- a/code/game/gamemodes/malfunction/malfunction.dm +++ b/code/game/gamemodes/malfunction/malfunction.dm @@ -10,3 +10,4 @@ auto_recall_shuttle = 0 antag_tags = list(MODE_MALFUNCTION) disabled_jobs = list("AI") + votable = 0 diff --git a/code/game/gamemodes/ninja/ninja.dm b/code/game/gamemodes/ninja/ninja.dm index f17b693455..df3cb998b9 100644 --- a/code/game/gamemodes/ninja/ninja.dm +++ b/code/game/gamemodes/ninja/ninja.dm @@ -13,4 +13,5 @@ required_players_secret = 5 required_enemies = 1 end_on_antag_death = 0 - antag_tags = list(MODE_NINJA) \ No newline at end of file + antag_tags = list(MODE_NINJA) + votable = 0 \ No newline at end of file