From f6aec6cc12749e9a41bae525f66d6d37ecd4df1b Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 16 Feb 2022 19:35:12 +0000 Subject: [PATCH] Mobs on CentCom will not be selected as valentines. (#64926) * No love at centcom * Okay, nuke ops can have a little valentines --- code/modules/events/holiday/vday.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/events/holiday/vday.dm b/code/modules/events/holiday/vday.dm index 6fac3bb71ea..2f170648830 100644 --- a/code/modules/events/holiday/vday.dm +++ b/code/modules/events/holiday/vday.dm @@ -23,7 +23,8 @@ var/list/valentines = list() for(var/mob/living/M in GLOB.player_list) - if(!M.stat && M.mind) + var/turf/current_turf = get_turf(M.mind.current) + if(!M.stat && M.mind && !current_turf.onCentCom()) valentines |= M