From d2ee3cc05b2e3f84b03f75d75ad89bc478db764a Mon Sep 17 00:00:00 2001 From: nemvar <47324920+nemvar@users.noreply.github.com> Date: Thu, 18 Jul 2019 10:26:14 +0200 Subject: [PATCH] Xenos no longer delay round end. (#45230) * Original fix donut steal * preventroundtypconversion --- code/modules/antagonists/xeno/xeno.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/antagonists/xeno/xeno.dm b/code/modules/antagonists/xeno/xeno.dm index b8f9927bc4b..aa4e4014592 100644 --- a/code/modules/antagonists/xeno/xeno.dm +++ b/code/modules/antagonists/xeno/xeno.dm @@ -12,6 +12,7 @@ name = "Xenomorph" job_rank = ROLE_ALIEN show_in_antagpanel = FALSE + prevent_roundtype_conversion = FALSE var/datum/team/xeno/xeno_team /datum/antagonist/xeno/create_team(datum/team/xeno/new_team) @@ -34,4 +35,4 @@ /mob/living/carbon/alien/mind_initialize() ..() if(!mind.has_antag_datum(/datum/antagonist/xeno)) - mind.add_antag_datum(/datum/antagonist/xeno) \ No newline at end of file + mind.add_antag_datum(/datum/antagonist/xeno)