Skip to content

Commit

Permalink
...oh, yeah, adding it to IOTMS.ash would do it
Browse files Browse the repository at this point in the history
  • Loading branch information
docrostov committed Mar 2, 2024
1 parent 95b9037 commit 37e4293
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ void IOTMCandyCaneSwordGenerateTasks(ChecklistEntry [int] task_entries, Checklis
pathCheck = my_path().id == PATH_GREY_GOO ? false : true;
pathCheck = my_path().id == PATH_AVATAR_OF_BORIS ? false : true;

// __misc_state["in run"] && pathCheck
if (true)
// __misc_state["in run"]
if (pathCheck)
{
string url = "inventory.php?ftext=candy+cane+sword+cane";
// This is the description for the supernag. The supernag is in the task_entries, buried within conditional ifs and only shows up if you're in the zone.
Expand Down
6 changes: 5 additions & 1 deletion Source/relay/TourGuide/Support/IOTMs.ash
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ void initialiseIOTMsUsable()
if (__campground[lookupItem("Little Geneticist DNA-Splicing Lab")] > 0)
__iotms_usable[lookupItem("Little Geneticist DNA-Splicing Lab")] = true;
if (__campground[lookupItem("Replica Little Geneticist DNA-Splicing Lab")] > 0)
__iotms_usable[lookupItem("Little Geneticist DNA-Splicing Lab")] = true;
__[lookupItem("Little Geneticist DNA-Splicing Lab")] = true;

// __iotms_usable for gardens tracks whether the user has the garden installed.
// Gardens start returning 0 instead of 1 when the items are picked, so checking
Expand Down Expand Up @@ -145,6 +145,10 @@ void initialiseIOTMsUsable()
__iotms_usable[lookupItem("Clan Carnival Game")] = true;
__iotms_usable[$item[clan floundry]] = true;
}

if (lookupItem("candy cane sword cane").available_amount() > 0) //Mar 2021
__iotms_usable[lookupItem("candy cane sword cane")] = true;

//Can't use many things in G-Lover
if (my_path().id == PATH_G_LOVER) //Path 33
{
Expand Down

0 comments on commit 37e4293

Please sign in to comment.