From 996802396c870cca7e0d59f13f3692c451cff2e4 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 26 Aug 2015 17:51:28 -0400 Subject: [PATCH] Add a return message. --- toontown/toon/DistributedToonAI.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/toontown/toon/DistributedToonAI.py b/toontown/toon/DistributedToonAI.py index 8806b41a..2c535f4a 100755 --- a/toontown/toon/DistributedToonAI.py +++ b/toontown/toon/DistributedToonAI.py @@ -5041,8 +5041,8 @@ def unlimitedGags(): return 'Toggled unlimited gags %s for %s' % ('ON' if av.unlimitedGags else 'OFF', av.getName()) @magicWord(category=CATEGORY_PROGRAMMER) -def maxCogpage(): - """ Max the target's cog Page.. """ +def maxCogPage(): + """ Max the target's discovered cogs. """ target = spellbook.getTarget() deptCount = len(SuitDNA.suitDepts) target.b_setCogCount(list(CogPageGlobals.COG_QUOTAS[1]) * deptCount) @@ -5050,6 +5050,7 @@ def maxCogpage(): target.b_setCogStatus(cogStatus * deptCount) target.b_setCogRadar([1, 1, 1, 1]) target.b_setBuildingRadar([1, 1, 1, 1]) + return 'Maxed %s\'s discovered cogs -- Jumble' % (target.getName()) @magicWord(category=CATEGORY_PROGRAMMER) def immortal():