From be3ed28e28ab5718a0fc8bd4ffdc1af6c914df61 Mon Sep 17 00:00:00 2001 From: Blergo Date: Wed, 3 Jul 2024 15:34:32 +0100 Subject: [PATCH] testing --- command_handlers.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/command_handlers.py b/command_handlers.py index 89ac252..fc56253 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -38,17 +38,17 @@ def handle_exit_command(sender_id, interface): def handle_help_command(sender_id, interface, state=None): title = "█▓▒░ Yorkshire BBS ░▒▓█\n\n" commands = [] - if mail in interface.disabled is False: + if "mail" in interface.disabled is False: commands.append("[M]ail") - if bulletin in interface.disabled == False: + if "bulletin" in interface.disabled in False: commands.append("[B]ulletin") - if stats in interface.disabled == False: + if "stats" in interface.disabled is False: commands.append("[S]tats") - if fortune in interface.disabled == False: + if "fortune" in interface.disabled is False: commands.append("[F]ortune") - if wos in interface.disabled == False: + if "wos" in interface.disabled is False: 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("[H]elp")