diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/002-1/dan.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/002-1/dan.txt b/npc/002-1/dan.txt index 6af4cb349..613fd555b 100644 --- a/npc/002-1/dan.txt +++ b/npc/002-1/dan.txt @@ -14,7 +14,7 @@ .@q=getq(ShipQuests_Dan); if (.@q == 1) goto L_Report; if (.@q == 2) goto L_Reward; - if (.@q == 3) goto L_Finished; + if (.@q >= 3) goto L_Finished; mesn; mesq l("You see these pious around us?"); @@ -95,7 +95,7 @@ OnInit: end; .@t=getq2(ShipQuests_Dan); if (.@t+1 >= 12) setq ShipQuests_Dan, 2, 0; - if (.@t+1 < 12) setq ShipQuests_Dan, 1, .@t+1; + if (.@t+1 < 12) setq2 ShipQuests_Dan, .@t+1; } OnFakeKill: |