From 2c23b627fd161c3ad1ffb2c37bf321500d0b2b73 Mon Sep 17 00:00:00 2001 From: nikothedude <59709059+nikothedude@users.noreply.github.com> Date: Wed, 3 Sep 2025 15:22:42 -0400 Subject: [PATCH] Gravity sickness no longer causes stuttering (#4579) ## About The Pull Request This is a salt PR. Makes gravity sickness, the status effect given by spacer (and to my knowledge nothing else), cause the holder to be immune to level 1 nausea's stuttering effect. ## Why It's Good For The Game Spacer is a good quirk. I like it. Adds nice flavor to my character. But oh my god, the stuttering. The only thing stuttering does it be annoying and make it hard to talk, which is generally not a very good thing for "roleplay". Theres a reason very few people take social anxiety and instead opt to just stutter and stammer with their own fleshy fingers. This is especially bad on bubber where we have three whole planet maps, and it seems they're voted very often. ## Proof Of Testing
Screenshots/Videos image
## Changelog :cl: balance: Spacer no longer causes disgust stuttering /:cl: --------- Co-authored-by: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com> --- code/modules/surgery/organs/internal/stomach/_stomach.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/internal/stomach/_stomach.dm b/code/modules/surgery/organs/internal/stomach/_stomach.dm index 585f18ee4cb..f5fe3491e95 100644 --- a/code/modules/surgery/organs/internal/stomach/_stomach.dm +++ b/code/modules/surgery/organs/internal/stomach/_stomach.dm @@ -344,7 +344,8 @@ var/pukeprob = 2.5 + (0.025 * disgust) if(disgust >= DISGUST_LEVEL_GROSS) if(SPT_PROB(5, seconds_per_tick)) - disgusted.adjust_stutter(2 SECONDS) + if(!disgusted.has_status_effect(/datum/status_effect/spacer/gravity_sickness)) // BUBBER EDIT CHANGE - no more constant spacer stutter anshallah + disgusted.adjust_stutter(2 SECONDS) disgusted.adjust_confusion(2 SECONDS) if(SPT_PROB(5, seconds_per_tick) && !disgusted.stat) to_chat(disgusted, span_warning("You feel kind of iffy..."))