From b6dcbf2706aa7358178bf143426281fc7947a54b Mon Sep 17 00:00:00 2001 From: Malibu Stacey <50261170+Malibu-Stacey@users.noreply.github.com> Date: Wed, 13 Sep 2023 16:34:13 -0700 Subject: [PATCH] add exception for small path --- RELEASE/scripts/autoscend/iotms/mr2023.ash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE/scripts/autoscend/iotms/mr2023.ash b/RELEASE/scripts/autoscend/iotms/mr2023.ash index 771a8e483..c0061c5dc 100644 --- a/RELEASE/scripts/autoscend/iotms/mr2023.ash +++ b/RELEASE/scripts/autoscend/iotms/mr2023.ash @@ -233,10 +233,11 @@ boolean auto_getCinch(int goal) // don't have enough cinch and don't have any free rests left return false; } - if(!haveAnyIotmAlternativeRestSiteAvailable() && get_dwelling() == $item[big rock]) + if(!haveAnyIotmAlternativeRestSiteAvailable() && (get_dwelling() == $item[big rock] && !in_small())) { // don't have anywhere to rest // get dwelling returns big rock when no place to rest in campsite + // exception for Small path as you can't use housing in-run so you will always have a big rock. return false; } // use free rests until have enough cinch or out of rests