Loading cog/actions.py +2 −0 Original line number Diff line number Diff line Loading @@ -993,6 +993,7 @@ class Help(Action): ['{prefix}drop', 'Drop forts into the fort sheet'], ['{prefix}feedback', 'Give feedback or report a bug'], ['{prefix}fort', 'Get information about our fort systems'], ['{prefix}help', 'This help command.'], ['{prefix}hold', 'Declare held merits or redeem them'], ['{prefix}kos', 'Manage or search kos list'], ['{prefix}near', 'Find things near you.'], Loading @@ -1006,6 +1007,7 @@ class Help(Action): ['{prefix}trigger', 'Calculate fort and um triggers for systems'], ['{prefix}um', 'Get information about undermining targets'], ['{prefix}user', 'Manage your user, set sheet name and tag'], ['{prefix}vote', 'Check and record cycle vote for prep/consolidation.'], ['{prefix}whois', 'Search for commander on inara.cz'], ['{prefix}help', 'This help message'], ] Loading cog/parse.py +4 −3 Original line number Diff line number Diff line Loading @@ -641,11 +641,12 @@ def subs_vote(subs, prefix): desc = """Cast a vote. **{prefix}vote** Show current vote goal. Show the current vote instructions. **{prefix}vote cons 5** Vote consolidation with a power of 5 ... Vote consolidation with a strength of 5. **{prefix}vote prep 15** Vote preparation with 3 accounts and 5 vote power each. Vote preparation with strength 15. In this case 3 accounts that have 5 vote strength each. """.format(prefix=prefix) sub = subs.add_parser(prefix + 'vote', description=desc, formatter_class=RawHelp) sub.set_defaults(cmd='Voting') Loading Loading
cog/actions.py +2 −0 Original line number Diff line number Diff line Loading @@ -993,6 +993,7 @@ class Help(Action): ['{prefix}drop', 'Drop forts into the fort sheet'], ['{prefix}feedback', 'Give feedback or report a bug'], ['{prefix}fort', 'Get information about our fort systems'], ['{prefix}help', 'This help command.'], ['{prefix}hold', 'Declare held merits or redeem them'], ['{prefix}kos', 'Manage or search kos list'], ['{prefix}near', 'Find things near you.'], Loading @@ -1006,6 +1007,7 @@ class Help(Action): ['{prefix}trigger', 'Calculate fort and um triggers for systems'], ['{prefix}um', 'Get information about undermining targets'], ['{prefix}user', 'Manage your user, set sheet name and tag'], ['{prefix}vote', 'Check and record cycle vote for prep/consolidation.'], ['{prefix}whois', 'Search for commander on inara.cz'], ['{prefix}help', 'This help message'], ] Loading
cog/parse.py +4 −3 Original line number Diff line number Diff line Loading @@ -641,11 +641,12 @@ def subs_vote(subs, prefix): desc = """Cast a vote. **{prefix}vote** Show current vote goal. Show the current vote instructions. **{prefix}vote cons 5** Vote consolidation with a power of 5 ... Vote consolidation with a strength of 5. **{prefix}vote prep 15** Vote preparation with 3 accounts and 5 vote power each. Vote preparation with strength 15. In this case 3 accounts that have 5 vote strength each. """.format(prefix=prefix) sub = subs.add_parser(prefix + 'vote', description=desc, formatter_class=RawHelp) sub.set_defaults(cmd='Voting') Loading