diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index 32d2c779b5..518b3d823f 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -2365,7 +2365,7 @@ to_chat(M, "You feel a knot in your stomach.") knotted = 1 - if(prob(5 + amount/2)) // don't want this to cause too much damage + if(prob(5 + amount * 0.5)) // don't want this to cause too much damage M.losebreath += 2 to_chat(M, "You feel a knot in your throat.") M.emote("cough")