From 16b34bf7b368bbf6ea1eb7d17b23cd86f3112a2e Mon Sep 17 00:00:00 2001 From: Thaloria Date: Mon, 31 Oct 2022 16:00:44 +0100 Subject: [PATCH] added fruit game support --- combined_bot_main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/combined_bot_main.py b/combined_bot_main.py index 9c67aeb..c8d4f18 100644 --- a/combined_bot_main.py +++ b/combined_bot_main.py @@ -7,6 +7,7 @@ from farm import Farm from magic import Magic from craft import Craft from mine import Mine +from fruit import Fruit def run(): @@ -53,6 +54,9 @@ def run(): elif overlay.rb_int.get() == 6: mine = Mine(overlay) mine.execute_main_loop() + elif overlay.rb_int.get() == 7: + fruit = Fruit(overlay) + fruit.execute_main_loop() if __name__ == "__main__":