diff --git a/baystation12.dme b/baystation12.dme
index 0ec465a3de5..5c481cc856f 100644
--- a/baystation12.dme
+++ b/baystation12.dme
@@ -455,7 +455,6 @@
#include "code\game\gamemodes\nuclear\nuclear.dm"
#include "code\game\gamemodes\nuclear\nuclearbomb.dm"
#include "code\game\gamemodes\nuclear\pinpointer.dm"
-#include "code\game\gamemodes\revolution\anti_revolution.dm"
#include "code\game\gamemodes\revolution\revolution.dm"
#include "code\game\gamemodes\revolution\rp_revolution.dm"
#include "code\game\gamemodes\sandbox\h_sandbox.dm"
diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm
index 35624648a73..4bb600a9730 100644
--- a/code/modules/admin/player_panel.dm
+++ b/code/modules/admin/player_panel.dm
@@ -478,7 +478,7 @@
dat += "
PM | "
dat += ""
- if(istype(ticker.mode, /datum/game_mode/anti_revolution) && ticker.mode:heads.len)
+ /*if(istype(ticker.mode, /datum/game_mode/anti_revolution) && ticker.mode:heads.len) //comment out anti-revolution
dat += "
| Corrupt Heads | |
"
for(var/datum/mind/N in ticker.mode:heads)
var/mob/M = N.current
@@ -486,7 +486,7 @@
dat += "| [M.real_name][M.client ? "" : " (logged out)"][M.stat == 2 ? " (DEAD)" : ""] | "
dat += "PM |
"
dat += "
"
-
+*/
if(ticker.mode.traitors.len > 0)
dat += "
| Traitors | | |
"
for(var/datum/mind/traitor in ticker.mode.traitors)