From 610f2b47ba2807f3ade98fbd4fab4e68fe491086 Mon Sep 17 00:00:00 2001 From: octareenroon91 Date: Sun, 14 Feb 2016 15:34:07 -0600 Subject: [PATCH] Now requires 20 crackers to go from 1% to 100% speak_chance. --- code/modules/mob/living/simple_animal/parrot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index ba9234d4a09..37072d94f25 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -335,7 +335,7 @@ user.drop_item() if(health < maxHealth) adjustBruteLoss(-10) - speak_chance = 100 - (0.7 * (100 - speak_chance)) // Chance to NOT talk decays exponentially + speak_chance *= 1.27 // 20 crackers to go from 1% to 100% user << "[src] eagerly devours the cracker." ..() return