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)