From 61ab6620a7d854913b3ecae4871b3825edaaaf99 Mon Sep 17 00:00:00 2001 From: Alphas00 <154434082+Alphas00@users.noreply.github.com> Date: Sat, 22 Jun 2024 20:55:40 +0200 Subject: [PATCH] Blueberry stains change Blueberry stains now generate randomly when a character is "juiced", not over time while a character has some in them --- GainStation13/code/datums/diseases/advance/symptoms/berry.dm | 3 +++ .../modules/reagents/chemistry/reagents/consumable_reagents.dm | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GainStation13/code/datums/diseases/advance/symptoms/berry.dm b/GainStation13/code/datums/diseases/advance/symptoms/berry.dm index bd70484c..f5118b14 100644 --- a/GainStation13/code/datums/diseases/advance/symptoms/berry.dm +++ b/GainStation13/code/datums/diseases/advance/symptoms/berry.dm @@ -47,6 +47,9 @@ to_chat(M, "[user.name] juices you...") else to_chat(user, "You get some juice out of you...") + if(prob(5)) + new /obj/effect/decal/cleanable/juice(M.loc) + playsound(M.loc, 'sound/effects/splat.ogg',rand(10,50), 1) return ..() diff --git a/GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm b/GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm index e5fafad3..7b9c6510 100644 --- a/GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm +++ b/GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm @@ -117,9 +117,6 @@ if(!no_mob_color) M.add_atom_colour(picked_color, WASHABLE_COLOUR_PRIORITY) M.adjust_fatness(1, FATTENING_TYPE_CHEM) - if(prob(2)) - new /obj/effect/decal/cleanable/juice(M.loc) - playsound(M.loc, 'sound/effects/splat.ogg',rand(10,50), 1) ..() /datum/reagent/blueberry_juice/on_mob_add(mob/living/L, amount)