Skip to content

Commit

Permalink
Fix #244
Browse files Browse the repository at this point in the history
  • Loading branch information
SMUnlimited committed Apr 20, 2024
1 parent 26a90b2 commit 95cf9ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

### Fixed
- Fixed issue with boolean check of third mine timing.
- Fixed issue where mine required for ancient or item expansions could be nulled mid use which would break the logic.
- Fixed issue where mine required for ancient or item expansions could be nulled mid use which would break the logic. (jzy-chitong56)

## [3.3.4] - 2024-03-10

Expand Down
4 changes: 3 additions & 1 deletion common.eai
Original file line number Diff line number Diff line change
Expand Up @@ -10441,7 +10441,9 @@ function StartExpansionAM takes integer qty, integer hall returns integer
endif
if CheckExpansionTaken(current_expansion) then
call Trace("AMAIStartexpa: Expansion Taken by someone else")
set current_expansion = null
if current_expansion != not_taken_expansion then
set current_expansion = null
endif
if expansion_peon != null and build_zeppelin != null and UnitAlive(expansion_peon) and IsUnitLoaded(expansion_peon) then
call IssueTargetOrder(build_zeppelin, "unload", expansion_peon)
call TQAddUnitJob(0.5, RESET_GUARD_POSITION, 80, build_zeppelin)
Expand Down

0 comments on commit 95cf9ea

Please sign in to comment.