Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sc2: Fixing incorrect item link in fast delivery trigger #154

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4235,7 +4235,7 @@ void libABFE498B_gf_AP_Triggers_Terran_unlockFastDelivery (int lp_player) {

// Implementation
lv_upgradeLevels = TechTreeUpgradeCount(lp_player, "AP_FastDelivery", c_techCountQueuedOrBetter);
libNtve_gf_SetUpgradeLevelForPlayer(lp_player, "AP_MercenaryMunitions", 1);
libNtve_gf_SetUpgradeLevelForPlayer(lp_player, "AP_FastDelivery", 1);
if ((lv_upgradeLevels == 0)) {
lv_index = 0;
for ( ; ( (auto92A9B087_ai >= 0 && lv_index <= auto92A9B087_ae) || (auto92A9B087_ai < 0 && lv_index >= auto92A9B087_ae) ) ; lv_index += auto92A9B087_ai ) {
Expand Down
2 changes: 1 addition & 1 deletion Mods/ArchipelagoTriggers.SC2Mod/Triggers
Original file line number Diff line number Diff line change
Expand Up @@ -33682,7 +33682,7 @@
</Element>
<Element Type="Param" Id="AB60765D">
<ParameterDef Type="ParamDef" Library="Ntve" Id="7E5035EE"/>
<Value>AP_MercenaryMunitions</Value>
<Value>AP_FastDelivery</Value>
<ValueType Type="gamelink"/>
<ValueGameType Type="Upgrade"/>
</Element>
Expand Down