mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2025-03-05 20:51:53 -08:00
fixed indent
This commit is contained in:
parent
0fb2153472
commit
9b80da6277
|
@ -38,19 +38,19 @@ def handle_exit_command(sender_id, interface):
|
||||||
def handle_help_command(sender_id, interface, state=None):
|
def handle_help_command(sender_id, interface, state=None):
|
||||||
title = "█▓▒░ Yorkshire BBS ░▒▓█\n\n"
|
title = "█▓▒░ Yorkshire BBS ░▒▓█\n\n"
|
||||||
commands = []
|
commands = []
|
||||||
if mail in interface.disabled == False:
|
if mail in interface.disabled == False:
|
||||||
commands.append("[M]ail")
|
commands.append("[M]ail")
|
||||||
if bulletin in interface.disabled == False:
|
if bulletin in interface.disabled == False:
|
||||||
commands.append("[B]ulletin")
|
commands.append("[B]ulletin")
|
||||||
if stats in interface.disabled == False:
|
if stats in interface.disabled == False:
|
||||||
commands.append("[S]tats")
|
commands.append("[S]tats")
|
||||||
if fortune in interface.disabled == False:
|
if fortune in interface.disabled == False:
|
||||||
commands.append("[F]ortune")
|
commands.append("[F]ortune")
|
||||||
if wos in interface.disabled == False:
|
if wos in interface.disabled == False:
|
||||||
commands.append("[W]all of Shame")
|
commands.append("[W]all of Shame")
|
||||||
if channel in interface.disabled == False:
|
if channel in interface.disabled == False:
|
||||||
commands.append("[C]hannel Directory")
|
commands.append("[C]hannel Directory")
|
||||||
commands.append("[H]elp")
|
commands.append("[H]elp")
|
||||||
|
|
||||||
if state and 'command' in state:
|
if state and 'command' in state:
|
||||||
current_command = state['command']
|
current_command = state['command']
|
||||||
|
|
Loading…
Reference in a new issue