mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 22:50:26 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user