From afb3a78ded2e4f1ce58e5f801efc0becc6e93e7d Mon Sep 17 00:00:00 2001 From: Dave Lee Date: Sun, 18 Dec 2016 15:32:29 -0600 Subject: [PATCH] Fix resource section for AWOL aftercore This may not be the cleanest approach, but it's what I use in my personal copy of Guide --- Source/relay/Guide/Paths/Avatar of West of Loathing.ash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/relay/Guide/Paths/Avatar of West of Loathing.ash b/Source/relay/Guide/Paths/Avatar of West of Loathing.ash index 02851fe5..558da0b0 100644 --- a/Source/relay/Guide/Paths/Avatar of West of Loathing.ash +++ b/Source/relay/Guide/Paths/Avatar of West of Loathing.ash @@ -2,7 +2,7 @@ RegisterResourceGenerationFunction("PathAvatarOfWestOfLoathingGenerateResource"); void PathAvatarOfWestOfLoathingGenerateResource(ChecklistEntry [int] resource_entries) { - if (my_path_id() != PATH_AVATAR_OF_WEST_OF_LOATHING) + if ((my_path_id() != PATH_AVATAR_OF_WEST_OF_LOATHING) && (my_class() != lookupClass("Snake Oiler")) && (my_class() != lookupClass("Beanslinger")) && (my_class() != lookupClass("Cow Puncher"))) return; //Oils: @@ -197,4 +197,4 @@ void PathAvatarOfWestOfLoathingGenerateTasks(ChecklistEntry [int] task_entries, { task_entries.listAppend(ChecklistEntryMake("__effect Cowrruption", "inventory.php?which=3", ChecklistSubentryMake("Use corrupted marrow", "", "+200% weapon damage/spell damage"), -11)); } -} \ No newline at end of file +}