loathers / autoscend

An ascension script for KoLMafia
Other
45 stars 67 forks source link

Kramko sausage grinder cannot be equipped in some paths. Don't attempt to use sausage goblins in those #200

Closed taltamir closed 4 years ago

taltamir commented 4 years ago

Context

Expected/Desired Behavior

Autoscend errors out when it tries to use a sausage goblin in Way of the Surprising Fist. Presumably a problem in all paths that cannot equip an offhand item but can still pull the kramko sausage grinder.

Fix

edit the file auto_mr2019.ash find the function boolean auto_sausageGoblin(location loc, string option) insert early into that function the code

    // can't equip kramko sausage grinder during certain paths.

    if(my_path() == "Way of the Surprising Fist")
    {
        return false;
    }

    if(my_path() == "Avatar of Boris")
    {
        return false;
    }
Malibu-Stacey commented 4 years ago

merged to beta in #205