From fd2a83b88bf841a870771c8c4fbd914cedb55b96 Mon Sep 17 00:00:00 2001 From: psq95 Date: Tue, 16 May 2023 20:01:50 +0100 Subject: [PATCH] Do not poke data_core if SSD --- code/modules/mob/living/carbon/life.dm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index cf42ffbe..d6a20a0d 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -562,13 +562,14 @@ GLOBAL_LIST_INIT(ballmer_windows_me_msg, list("Yo man, what if, we like, uh, put if(ckey) if(!client && !(stat == DEAD)) - GLOB.data_core.manifest_modify_status(real_name, TRUE) - add_status_indicator("ssd") - SSD = TRUE + if (!SSD) + add_status_indicator("ssd") + GLOB.data_core.manifest_modify_status(real_name, TRUE) + SSD = TRUE else if(SSD) - GLOB.data_core.manifest_modify_status(real_name, FALSE) remove_status_indicator("ssd") + GLOB.data_core.manifest_modify_status(real_name, FALSE) SSD = FALSE //Dizziness