From 3c8f4ca032811b8dfc5e1dc85b42d10a0aa44409 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 17 Sep 2017 12:02:23 -0500 Subject: [PATCH] [MIRROR] Monkeys are now more likely to become Gorillas (#2806) * Monkeys are now more likely to become Gorillas (#30775) * Automatic changelog generation for PR #30056 [ci skip] * Delete AutoChangeLog-pr-30056.yml * Monkey to Gorilla now more likely * Monkeys are now more likely to become Gorillas --- code/modules/mob/living/carbon/monkey/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/monkey/life.dm b/code/modules/mob/living/carbon/monkey/life.dm index 55aee04ff6..1ecbcc6b67 100644 --- a/code/modules/mob/living/carbon/monkey/life.dm +++ b/code/modules/mob/living/carbon/monkey/life.dm @@ -30,7 +30,7 @@ emote("collapse") Knockdown(200) to_chat(src, "You feel weak.") - if(radiation > 30 && prob((radiation - 30) * (radiation - 30) * 0.00002)) + if(radiation > 30 && prob((radiation - 30) * (radiation - 30) * 0.0002)) gorillize() return switch(radiation)