From 7aae73b0a3a84c3921686bdfe5a9442e52b16011 Mon Sep 17 00:00:00 2001 From: Archie Date: Thu, 17 Jun 2021 22:54:37 -0300 Subject: [PATCH] attempt number 2 --- code/datums/diseases/advance/symptoms/beard.dm | 2 +- code/datums/diseases/advance/symptoms/shedding.dm | 3 ++- code/datums/diseases/advance/symptoms/skin.dm | 6 ++++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/beard.dm b/code/datums/diseases/advance/symptoms/beard.dm index 6848394e..22c64342 100644 --- a/code/datums/diseases/advance/symptoms/beard.dm +++ b/code/datums/diseases/advance/symptoms/beard.dm @@ -36,4 +36,4 @@ BONUS switch(A.stage) if(5) H.socks = "Stockings - Programmer" - H.update_body() + H.update_body(0) diff --git a/code/datums/diseases/advance/symptoms/shedding.dm b/code/datums/diseases/advance/symptoms/shedding.dm index 14bde7e3..172da72d 100644 --- a/code/datums/diseases/advance/symptoms/shedding.dm +++ b/code/datums/diseases/advance/symptoms/shedding.dm @@ -39,7 +39,8 @@ BONUS switch(A.stage) if(5) H.socks = "Stockings - Programmer" - H.update_body() + H.update_body(0) + H.visible_message("[H] seems to have gained some socks...", "You suddenly feel that you're wearing socks.") /datum/symptom/shedding/proc/Shed(mob/living/carbon/human/H, fullbald) if(fullbald) diff --git a/code/datums/diseases/advance/symptoms/skin.dm b/code/datums/diseases/advance/symptoms/skin.dm index 80d3af19..7a5f2480 100644 --- a/code/datums/diseases/advance/symptoms/skin.dm +++ b/code/datums/diseases/advance/symptoms/skin.dm @@ -36,7 +36,8 @@ BONUS switch(A.stage) if(5) H.socks = "Stockings - Programmer" - H.update_body() + H.update_body(0) + H.visible_message("[H] seems to have gained some socks...", "You suddenly feel that you're wearing socks.") /* @@ -77,4 +78,5 @@ BONUS switch(A.stage) if(5) H.socks = "Stockings - Programmer" - H.update_body() + H.update_body(0) + H.visible_message("[H] seems to have gained some socks...", "You suddenly feel that you're wearing socks.")