File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -402,9 +402,14 @@ def geneaux():
402
402
battle .main .buddy_swap (Kimahri )
403
403
CurrentPlayer ().attack ()
404
404
while not Tidus .is_turn ():
405
- CurrentPlayer ().defend ()
405
+ if memory .main .turn_ready ():
406
+ CurrentPlayer ().defend ()
406
407
while Tidus .is_turn ():
407
- CurrentPlayer ().defend ()
408
+ if memory .main .turn_ready ():
409
+ CurrentPlayer ().defend ()
410
+ memory .main .wait_frames (3 )
411
+ while not memory .main .turn_ready ():
412
+ pass
408
413
battle .main .buddy_swap (Yuna )
409
414
screen .await_turn ()
410
415
battle .main .aeon_summon (0 ) # Summon Valefor
@@ -791,7 +796,7 @@ def extractor():
791
796
memory .main .get_enemy_current_hp ()[0 ] < 1900
792
797
and Wakka .has_overdrive ()
793
798
):
794
- Wakka .overdrive ()
799
+ Wakka .overdrive (combat = True )
795
800
else :
796
801
CurrentPlayer ().attack ()
797
802
elif memory .main .diag_skip_possible ():
You can’t perform that action at this time.
0 commit comments