Update drink_reagents.dm

This commit is contained in:
Trilbyspaceclone
2019-08-17 00:02:22 -04:00
committed by GitHub
parent 5225665516
commit c81fd8fcd4

View File

@@ -896,7 +896,9 @@
/datum/reagent/consumable/catnip_tea/on_mob_life(mob/living/carbon/M)
M.getStaminaLoss(min(50 - staminaloss, 3))
M.emote("nya")
to_chat(M, "<span class = 'notice'>[pick("Headpats feel nice.", "Backrubs would be nice.", "Mew")]</span>")
if(prob(20))
M.emote("nya")
if(prob(20))
to_chat(M, "<span class = 'notice'>[pick("Headpats feel nice.", "Backrubs would be nice.", "Mew")]</span>")
M.adjustArousalLoss(5)
..()