#154 look_for_hole disabled by default

This commit is contained in:
Adam Saudagar 2023-03-07 01:48:59 +05:30
parent 788e78b9bb
commit f520004c11
2 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ class FullAuto(IEngine):
_hole_found_flag = FishingMode.CurrentMode in valid_states
# if vertical movement is disabled
if not config.get("look_for_hole", 1):
if not config.get("look_for_hole", 0):
return _hole_found_flag
t = 0

View File

@ -48,7 +48,7 @@ def start_fullfisher_config(gui: 'GUI'):
mode_var = tk.IntVar(value=config.get("full_auto_mode", 0))
edit_var = tk.IntVar(value=config.get("edit_recorder_mode", 0))
tabout_var = tk.IntVar(value=config.get("tabout_stop", 1))
look_for_hole = tk.IntVar(value=config.get("look_for_hole", 1))
look_for_hole = tk.IntVar(value=config.get("look_for_hole", 0))
row = 0
ttk.Label(controls_frame, text="Calibration: ").grid(row=row, column=0, pady=(5, 0))