Skip to content

Commit

Permalink
fix when in autopl
Browse files Browse the repository at this point in the history
  • Loading branch information
jnackmclain committed Nov 5, 2024
1 parent a7aced1 commit dc020ff
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions _ark/dx/track/countdown/dx_countdown_funcs.dta
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,9 @@
{beatmatch foreach_active_player $player
{if {== {{$player get_user} get_slot_num} $dx_current_checked_slot}
{if {{$player get_user} is_local}
{{beatmatch active_player $dx_current_checked_slot} set_auto_play TRUE}
{if {! {modifier_mgr is_modifier_active mod_auto_play}}
{{beatmatch active_player $dx_current_checked_slot} set_auto_play TRUE}
}
}
}
}
Expand Down Expand Up @@ -461,7 +463,9 @@
{beatmatch foreach_active_player $player
{if {== {{$player get_user} get_slot_num} $dx_current_checked_slot}
{if {{$player get_user} is_local}
{{beatmatch active_player $dx_current_checked_slot} set_auto_play FALSE}
{if {! {modifier_mgr is_modifier_active mod_auto_play}}
{{beatmatch active_player $dx_current_checked_slot} set_auto_play FALSE}
}
}
}
}
Expand Down

0 comments on commit dc020ff

Please sign in to comment.