From 5bee14c99da8c84c36e121b5081f6b5148c008ed Mon Sep 17 00:00:00 2001 From: Pbatch <37177749+Pbatch@users.noreply.github.com> Date: Mon, 9 Sep 2024 19:30:02 +0100 Subject: [PATCH] Fix config key (#233) --- clashroyalebuildabot/bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clashroyalebuildabot/bot/bot.py b/clashroyalebuildabot/bot/bot.py index 9914ac5..709aad1 100644 --- a/clashroyalebuildabot/bot/bot.py +++ b/clashroyalebuildabot/bot/bot.py @@ -66,7 +66,7 @@ def __init__(self, actions, auto_start=True): ) keyboard_thread.start() - if config["load_deck"]: + if config["bot"]["load_deck"]: self.emulator.load_deck(cards) @staticmethod