diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-15 00:58:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-15 00:58:24 -0300 |
commit | 20400fdbf1cd09300e7a6dc9ab444420c980bbb0 (patch) | |
tree | c0f039c9c4269df33ba9b75f4980f11dcb4171a0 /npc/007-1 | |
parent | 02761b874a7c098a69187b437ce1128319b50a9f (diff) | |
download | serverdata-20400fdbf1cd09300e7a6dc9ab444420c980bbb0.tar.gz serverdata-20400fdbf1cd09300e7a6dc9ab444420c980bbb0.tar.bz2 serverdata-20400fdbf1cd09300e7a6dc9ab444420c980bbb0.tar.xz serverdata-20400fdbf1cd09300e7a6dc9ab444420c980bbb0.zip |
Fix gcsantime()
Diffstat (limited to 'npc/007-1')
-rw-r--r-- | npc/007-1/dracoula.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/007-1/dracoula.txt b/npc/007-1/dracoula.txt index a40959df9..7dec2bee4 100644 --- a/npc/007-1/dracoula.txt +++ b/npc/007-1/dracoula.txt @@ -40,7 +40,8 @@ L_Quest: next; } if (.@q == 0) goto L_Continue; - if (santime() >= getq2(MineQuest_Dracoula) + 60 * 60 * 23 || gcsantime()) goto L_Repeat; + .@q2=getq2(MineQuest_Dracoula) + 60 * 60 * 23; + if (santime() >= .@q2 || gcsantime(.@q2)) goto L_Repeat; mesn; mesq l("But come back in a few hours, I didn't lost all @@!", getitemlink(BatTeeth)); close; |