This commit is contained in:
Blergo 2024-07-03 15:39:34 +01:00
parent e828b38967
commit 580f7b209b

View file

@ -38,9 +38,9 @@ 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 is False: if not "mail" in interface.disabled:
commands.append("[M]ail") commands.append("[M]ail")
if "bulletin" in interface.disabled in False: if "bulletin" in interface.disabled is False:
commands.append("[B]ulletin") commands.append("[B]ulletin")
if "stats" in interface.disabled is False: if "stats" in interface.disabled is False:
commands.append("[S]tats") commands.append("[S]tats")