From 7ebcd2fa235d097e45f80e00f5f2e057da9f5490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TC=C2=B2?= <130875305+TheCommsChannel@users.noreply.github.com> Date: Fri, 14 Feb 2025 07:15:10 -0500 Subject: [PATCH] Update command_handlers.py Fix BBS Menu --- command_handlers.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/command_handlers.py b/command_handlers.py index 16695ba..195c8c7 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -32,7 +32,10 @@ def build_menu(items, menu_name): if item.strip() == 'Q': menu_str += "[Q]uick Commands\n" elif item.strip() == 'B': - menu_str += "[B]BS\n" + if menu_name == "📰BBS Menu📰": + menu_str += "[B]ulletins\n" + else: + menu_str += "[B]BS\n" elif item.strip() == 'U': menu_str += "[U]tilities\n" elif item.strip() == 'X': @@ -51,7 +54,6 @@ def build_menu(items, menu_name): menu_str += "[W]all of Shame\n" return menu_str - def handle_help_command(sender_id, interface, menu_name=None): if menu_name: update_user_state(sender_id, {'command': 'MENU', 'menu': menu_name, 'step': 1})