Skip to content

Commit

Permalink
Fix to not build more than 3 mines
Browse files Browse the repository at this point in the history
  • Loading branch information
SMUnlimited committed Apr 20, 2024
1 parent 3a9b771 commit fc26e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.eai
Original file line number Diff line number Diff line change
Expand Up @@ -10884,7 +10884,7 @@ if mines < 2 and ai_time - exp_time_count > exp_first_time then
endif
endif

if (mines < 3 and ai_time - exp_time_count > exp_second_time) or (active_expansion and ai_time - exp_time_count > exp_first_time) then
if mines < 3 and ((ai_time - exp_time_count > exp_second_time) or (active_expansion and ai_time - exp_time_count > exp_first_time)) then
if u != null then
set take_exp = true
call Trace("ExpansionBuilder:Need to Creep Mine 3")
Expand Down

0 comments on commit fc26e1f

Please sign in to comment.