Merge pull request #14070 from YakumoChen/distressingly-fuzzy

Makes Buzz Fuzz go on a diet
This commit is contained in:
silicons
2021-01-17 20:40:22 -07:00
committed by GitHub
2 changed files with 4 additions and 3 deletions
@@ -625,8 +625,9 @@
myseed.adjust_potency(round(chems.get_reagent_amount(src.type) * 0.5))
/datum/reagent/consumable/buzz_fuzz/on_mob_life(mob/living/carbon/M)
M.reagents.add_reagent(/datum/reagent/consumable/sugar,1)
if(prob(5))
if(prob(33))
M.reagents.add_reagent(/datum/reagent/consumable/sugar,1)
if(prob(1))
M.reagents.add_reagent(/datum/reagent/consumable/honey,1)
..()