diff --git a/botconfig.py.example b/botconfig.py.example index 277aa7f..2b2b1a3 100644 --- a/botconfig.py.example +++ b/botconfig.py.example @@ -28,8 +28,6 @@ OWNERS_ACCOUNTS = ("1owner_acc",) ADMINS_ACCOUNTS = ("1admin_acc", "2admin_acc") -DISABLE_DEBUG_MODE = False # Entirely disable debug mode - ALLOWED_NORMAL_MODE_COMMANDS = [] # Debug mode commands to be allowed in normal mode ALT_CHANNELS = "" diff --git a/src/__init__.py b/src/__init__.py index feb32bf..2682f23 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -54,7 +54,7 @@ if args.debug: debug_mode = True if args.verbose: verbose = True if args.normal: normal = True -botconfig.DEBUG_MODE = debug_mode if not botconfig.DISABLE_DEBUG_MODE and not normal else False +botconfig.DEBUG_MODE = debug_mode if not normal else False botconfig.VERBOSE_MODE = verbose if not normal else False # Initialize Database