Skip to content

Commit

Permalink
dumb to_int()s
Browse files Browse the repository at this point in the history
  • Loading branch information
Alium58 committed Oct 15, 2023
1 parent a4bfbe7 commit d0e04a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASE/scripts/autoscend/auto_util.ash
Original file line number Diff line number Diff line change
Expand Up @@ -1992,7 +1992,7 @@ boolean LX_summonMonster()
}

// summon grops to start copy chain. Goal is to copy into delay zones and get war progress at same time. Bonus if we get smoke bombs
if(!summonedMonsterToday($monster[Green Ops Soldier]) && get_property("hippiesDefeated") > 399 && get_property("hippiesDefeated") < 1000 && !in_koe())
if(!summonedMonsterToday($monster[Green Ops Soldier]) && get_property("hippiesDefeated").to_int() > 399 && get_property("hippiesDefeated").to_int() < 1000 && !in_koe())
{
if(summonMonster($monster[Green Ops Soldier])) return true;
}
Expand Down
2 changes: 1 addition & 1 deletion RELEASE/scripts/autoscend/iotms/mr2021.ash
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ boolean auto_backupTarget()
return true;
break;
case $monster[Green Ops Soldier]:
if(get_property("hippiesDefeated") > 399 && get_property("hippiesDefeated") < 1000 && !in_koe())
if(get_property("hippiesDefeated").to_int() > 399 && get_property("hippiesDefeated").to_int() < 1000 && !in_koe())
return true;
break;
default: break;
Expand Down

0 comments on commit d0e04a5

Please sign in to comment.