diff options
Diffstat (limited to 'world/map/npc/009-2/alan.txt')
-rw-r--r-- | world/map/npc/009-2/alan.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/009-2/alan.txt b/world/map/npc/009-2/alan.txt index 0e9da6fd..c08a7086 100644 --- a/world/map/npc/009-2/alan.txt +++ b/world/map/npc/009-2/alan.txt @@ -114,7 +114,7 @@ L_State_2: L_State_3: mes "[Alan]"; mes "\"How is the hunt going? Did you bring me any wood?\""; - if (countitem(569) < 1) close; + if (countitem("RawLog") < 1) close; next; if (Inspector == 1) menu @@ -128,7 +128,7 @@ L_State_3: close; L_State_3_try: - if (countitem(569) < 1) + if (countitem("RawLog") < 1) goto L_No_Log; delitem "RawLog", 1; mes "[Alan]"; @@ -142,7 +142,7 @@ L_State_3_try: next; mes "[Alan]"; mes "\"Sorry, this log was too weak for one of my forest bows. Now it is junk. Give me another.\""; - if (countitem(569) < 1) close; + if (countitem("RawLog") < 1) close; next; menu "Sure, here you go.", L_State_3_try, |