Skip to content

Commit

Permalink
Fix job thread running too slowly due to dodgy boolean #388
Browse files Browse the repository at this point in the history
  • Loading branch information
SMUnlimited committed Oct 6, 2024
1 parent 5ae68db commit d88e750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common.eai
Original file line number Diff line number Diff line change
Expand Up @@ -7426,7 +7426,7 @@ function TQHandleOnce takes nothing returns boolean
set unit_par = null
set group_par = null
set unit_par2 = null
return false
return b
endfunction

//============================================================================
Expand Down Expand Up @@ -11509,7 +11509,7 @@ function FormGroupAM takes integer seconds returns nothing
call InitAssault()

loop
exitwhen index == attack_length
exitwhen index >= attack_length

set unitid = attack_units[index]

Expand Down

0 comments on commit d88e750

Please sign in to comment.