diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-01 23:03:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-01 23:03:08 -0300 |
commit | a7b995e30a913295a1c14e426ea13038caba3397 (patch) | |
tree | 93017f171fd0d6048fc847f9a76e3a27041266dc /npc/017-1/fairy_collector.txt | |
parent | d63a9719e096af54f0ebf993463c59cdfdf610ad (diff) | |
download | serverdata-a7b995e30a913295a1c14e426ea13038caba3397.tar.gz serverdata-a7b995e30a913295a1c14e426ea13038caba3397.tar.bz2 serverdata-a7b995e30a913295a1c14e426ea13038caba3397.tar.xz serverdata-a7b995e30a913295a1c14e426ea13038caba3397.zip |
Fix a bug on Royal Fairy (reported by dangerDuck)
Diffstat (limited to 'npc/017-1/fairy_collector.txt')
-rw-r--r-- | npc/017-1/fairy_collector.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/017-1/fairy_collector.txt b/npc/017-1/fairy_collector.txt index c85fa4011..72b90fe9f 100644 --- a/npc/017-1/fairy_collector.txt +++ b/npc/017-1/fairy_collector.txt @@ -11,9 +11,9 @@ .@q=getq(General_Collector); mesn; - if (.@q == 0) goto L_Busy; - if (.@q < 3) goto L_Incomplete; - if (.@q >= 3) goto L_Main; + if (.@n == 0) goto L_Busy; + if (.@n < 3) goto L_Incomplete; + if (.@n >= 3) goto L_Main; L_Busy: mesq l("Hi, I'm too busy to talk right now, please go away. Very pressing matters at hand."); |