diff options
Diffstat (limited to 'npc/027-2_Caretakers_House/diary.txt')
-rw-r--r-- | npc/027-2_Caretakers_House/diary.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/027-2_Caretakers_House/diary.txt b/npc/027-2_Caretakers_House/diary.txt index 9e931733..233dc8c5 100644 --- a/npc/027-2_Caretakers_House/diary.txt +++ b/npc/027-2_Caretakers_House/diary.txt @@ -28,9 +28,9 @@ L_Diary: mes "'Hamond won't be here next night - he needs to visit our wine supplier to negotiate the prices. Savaric knows this. I'm feeling so excited - I should go with Hamond, but I told him, I need to take care about the inn, while he's away. Savaric.. '"; next; mes "This is the last entry."; - if (@state != 6) goto L_Close; + if (@reid != 6) goto L_Close; - set @state, 7; + set @reid, 7; callsub S_Update_Mask; L_Close: close; @@ -38,6 +38,6 @@ L_Close: S_Update_Mask: set QUEST_Graveyard_Inn, (QUEST_Graveyard_Inn & ~(@Graveyard_Inn_MASK)) - | (@state << @Graveyard_Inn_SHIFT); + | (@reid << @Graveyard_Inn_SHIFT); return; } |