mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Rejig !commands to be less spammy
Commands are now organized per module, and full command sysnopsis is only given for a module at a time
This commit is contained in:
parent
85a7348571
commit
2c8ff697bd
4 changed files with 41 additions and 16 deletions
|
@ -147,6 +147,7 @@ def Withdraw(nick,chan,cmd):
|
|||
|
||||
|
||||
RegisterCommand({
|
||||
'module': 'withdraw',
|
||||
'name': 'withdraw',
|
||||
'parms': '<address> [<amount>]',
|
||||
'function': Withdraw,
|
||||
|
@ -154,12 +155,14 @@ RegisterCommand({
|
|||
'help': "withdraw part or all of your balance"
|
||||
})
|
||||
RegisterCommand({
|
||||
'module': 'withdraw',
|
||||
'name': 'enable_withdraw',
|
||||
'function': EnableWithdraw,
|
||||
'admin': True,
|
||||
'help': "Enable withdrawals"
|
||||
})
|
||||
RegisterCommand({
|
||||
'module': 'withdraw',
|
||||
'name': 'disable_withdraw',
|
||||
'function': DisableWithdraw,
|
||||
'admin': True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue