Skip to content

Commit

Permalink
bump min mafia version
Browse files Browse the repository at this point in the history
  • Loading branch information
Malibu-Stacey committed Sep 21, 2024
1 parent 94ab09d commit a3df1cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions RELEASE/scripts/autoscend.ash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
since r28019; // feat: add avant guard path
since r28060; // Avant Guard council text
/***
autoscend_header.ash must be first import
All non-accessory scripts must be imported here
Expand Down Expand Up @@ -1321,7 +1321,8 @@ boolean councilMaintenance()
boolean adventureFailureHandler()
{
location place = my_location();
if(my_location().turns_spent > 52)
int limit = (in_avantGuard() ? 100 : 50);
if(place.turns_spent > limit)
{
boolean tooManyAdventures = true;
Expand Down

0 comments on commit a3df1cc

Please sign in to comment.