Skip to content

Commit

Permalink
fix water expansion distance record error (#237)
Browse files Browse the repository at this point in the history
* Update Blizzard3VAI.eai

* Update common.eai
  • Loading branch information
jzy-chitong56 authored Feb 1, 2024
1 parent 84dc1ff commit e9e92f8
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 @@ -6017,7 +6017,7 @@ endfunction
//==============================================================
function AddWaterExpansion takes unit u, real d returns nothing
set water_expansion_list[water_expansion_list_length] = u
set water_expansion_dist[expansion_list_length] = d
set water_expansion_dist[water_expansion_list_length] = d
call GroupAddUnit(water_expansion, u)
set water_expansion_creeps[water_expansion_list_length] = GetExpFoeGroup(water_expansion_creeps[water_expansion_list_length],u) // group of the the creeps that guard this mine
set water_expansion_list_length = water_expansion_list_length + 1
Expand Down

0 comments on commit e9e92f8

Please sign in to comment.