From 0ccbf7ba7eca121c6a2db8ac502bb3bf79af9a94 Mon Sep 17 00:00:00 2001 From: Adam Saudagar Date: Sun, 16 May 2021 19:58:49 +0530 Subject: [PATCH] fixed calibrater mode gives you need to calibrate error --- fishy/engine/fullautofisher/engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fishy/engine/fullautofisher/engine.py b/fishy/engine/fullautofisher/engine.py index 8cc8e47..1cb67f3 100644 --- a/fishy/engine/fullautofisher/engine.py +++ b/fishy/engine/fullautofisher/engine.py @@ -89,7 +89,7 @@ class FullAuto(IEngine): if self.window.crop is None: log_raise("FishyQR not found") - if not self.calibrator.all_calibrated(): + if not (type(self.mode) is Calibrator) and not self.calibrator.all_calibrated(): log_raise("you need to calibrate first") self.fisher.toggle_start()