Skip to content

Commit

Permalink
in_ag not in_avantguard on main
Browse files Browse the repository at this point in the history
  • Loading branch information
dsimich committed Nov 5, 2024
1 parent d86da6c commit 1e39a84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions RELEASE/scripts/autoscend/quests/level_11.ash
Original file line number Diff line number Diff line change
Expand Up @@ -2129,7 +2129,7 @@ boolean L11_hiddenCityZones()

boolean equipMachete()
{
if(in_avantGuard())
if(in_ag())
{
return false; //combats aren't free so no point in equipping a Machete
}
Expand Down Expand Up @@ -2157,7 +2157,7 @@ boolean L11_hiddenCityZones()
}
boolean equipTearawayPants()
{
if(in_avantGuard() || is_boris() || in_wotsf())
if(in_ag() || is_boris() || in_wotsf())
{
//Since we won't have a machete equipped, we can actually use the Tearaway Pants skill and maybe get some adventures
if(auto_haveTearawayPants())
Expand All @@ -2170,7 +2170,7 @@ boolean L11_hiddenCityZones()

L11_hiddenTavernUnlock();

boolean canUseMachete = !is_boris() && !in_wotsf() && !in_pokefam() && !in_avantGuard();
boolean canUseMachete = !is_boris() && !in_wotsf() && !in_pokefam() && !in_ag();
boolean needMachete = canUseMachete && !possessEquipment($item[Antique Machete]) && (in_hardcore() || in_lol());
boolean needRelocate = (get_property("relocatePygmyJanitor").to_int() != my_ascensions());

Expand Down

0 comments on commit 1e39a84

Please sign in to comment.