Fixes Spray Tan not doing anything until ODd (#93750)

## About The Pull Request

The check was flipped, oops.

Closes #93709

## Changelog
🆑
fix: Fixed Spray Tan not doing anything until ODd
/🆑
This commit is contained in:
SmArtKar
2025-11-03 22:35:39 +01:00
committed by GitHub
parent ec104ef173
commit 58ea114508
@@ -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)