From 58ea11450889197efae417e9343f50cc2189eae8 Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Mon, 3 Nov 2025 22:35:39 +0100 Subject: [PATCH] Fixes Spray Tan not doing anything until ODd (#93750) ## About The Pull Request The check was flipped, oops. Closes #93709 ## Changelog :cl: fix: Fixed Spray Tan not doing anything until ODd /:cl: --- code/modules/reagents/chemistry/reagents/other_reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index fa2338a3a3d..4817ed59cb9 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -560,7 +560,7 @@ /datum/reagent/spraytan/expose_mob(mob/living/exposed_mob, methods=TOUCH, reac_volume, show_message = TRUE, touch_protection = 0) . = ..() if(ishuman(exposed_mob)) - if(methods & (PATCH|VAPOR) && touch_protection >= 1) + if(methods & (PATCH|VAPOR) && touch_protection < 1) var/mob/living/carbon/human/exposed_human = exposed_mob if(HAS_TRAIT(exposed_human, TRAIT_USES_SKINTONES)) switch(exposed_human.skin_tone)