From a4708291ac6f28c712fb0662cbbf43b722134548 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 11 Jun 2015 19:33:28 +0300 Subject: [PATCH] 33% instead of 16% --- toontown/toon/DistributedToonAI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toontown/toon/DistributedToonAI.py b/toontown/toon/DistributedToonAI.py index 1ad9ca3b..8f7a24e6 100755 --- a/toontown/toon/DistributedToonAI.py +++ b/toontown/toon/DistributedToonAI.py @@ -2536,7 +2536,7 @@ class DistributedToonAI(DistributedPlayerAI.DistributedPlayerAI, DistributedSmoo if totalMerits == 0 or merits >= totalMerits: return - self.cogMerits[dept] = min(totalMerits, merits + (totalMerits / 6)) + self.cogMerits[dept] = min(totalMerits, merits + (totalMerits / 3)) self.b_setCogMerits(self.cogMerits) def squish(self, damage):