diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 058671a..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/combined_user_interface.py b/combined_user_interface.py index 3224b4d..71bd411 100644 --- a/combined_user_interface.py +++ b/combined_user_interface.py @@ -290,13 +290,13 @@ class PrimaryOverlay(threading.Thread): self.MiningOverlay.show_window() def get_strategy_value_as_int(self): - if self.emitter_use == "rainbow": + if self.emitter_use.get() == "rainbow": return 11 - elif self.emitter_use == "bigbomb": + elif self.emitter_use.get() == "bigbomb": return 9 - elif self.emitter_use == "rocket": + elif self.emitter_use.get() == "rocket": return 7 - elif self.emitter_use == "bomb": + elif self.emitter_use.get() == "bomb": return 5 else: return 11