From 580f7b209b887c80e2c281695fac137e2add75d3 Mon Sep 17 00:00:00 2001 From: Blergo Date: Wed, 3 Jul 2024 15:39:34 +0100 Subject: [PATCH] testing --- command_handlers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command_handlers.py b/command_handlers.py index c7ffa41..14b4017 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -38,9 +38,9 @@ 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 not "mail" in interface.disabled: commands.append("[M]ail") - if "bulletin" in interface.disabled in False: + if "bulletin" in interface.disabled is False: commands.append("[B]ulletin") if "stats" in interface.disabled is False: commands.append("[S]tats")