mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
#154 look_for_hole disabled by default
This commit is contained in:
parent
788e78b9bb
commit
f520004c11
@ -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
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user