mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2025-01-09 17:53:50 +00:00
Add a return message.
This commit is contained in:
parent
de8446e261
commit
996802396c
1 changed files with 3 additions and 2 deletions
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue