From b1e3f9f96bda159928998e8450228a9015eb5023 Mon Sep 17 00:00:00 2001 From: bustarhymes69 <79654812+bustarhymes69@users.noreply.github.com> Date: Thu, 23 Nov 2023 08:10:03 -0800 Subject: [PATCH] Updated Cleaver Location Cleaver location changed in KoE --- RELEASE/scripts/autoscend/iotms/mr2022.ash | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/RELEASE/scripts/autoscend/iotms/mr2022.ash b/RELEASE/scripts/autoscend/iotms/mr2022.ash index 6e83ca3d6..91ee169aa 100644 --- a/RELEASE/scripts/autoscend/iotms/mr2022.ash +++ b/RELEASE/scripts/autoscend/iotms/mr2022.ash @@ -251,14 +251,21 @@ boolean auto_canUseJuneCleaver() { boolean auto_juneCleaverAdventure() { - if (!auto_canUseJuneCleaver() || get_property("_juneCleaverFightsLeft").to_int() > 0 || !zone_isAvailable($location[The Dire Warren])) + if (!auto_canUseJuneCleaver() || get_property("_juneCleaverFightsLeft").to_int() > 0) { return false; } if (autoEquip($slot[weapon], $item[June cleaver])) { - return autoAdv($location[The Dire Warren]); + if (in_koe()) + { + autoAdv($location[Cobb's Knob Treasury]); // arbitrarily picked always accessible location + } + else + { + autoAdv($location[The Dire Warren]); + } } return false; }