diff options
author | Fate <fate-tmw@googlemail.com> | 2009-06-06 10:21:50 +0000 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-06-06 10:21:50 +0000 |
commit | 5ffa653cc01a1143cd296662d76fde77ea88ebac (patch) | |
tree | 9c5fbb4235f5cf92dcceb54ba1dcc81cfc76e57e | |
parent | b7d7037a19a598b909ab7d2cb7f27d85eaed5369 (diff) | |
download | serverdata-5ffa653cc01a1143cd296662d76fde77ea88ebac.tar.gz serverdata-5ffa653cc01a1143cd296662d76fde77ea88ebac.tar.bz2 serverdata-5ffa653cc01a1143cd296662d76fde77ea88ebac.tar.xz serverdata-5ffa653cc01a1143cd296662d76fde77ea88ebac.zip |
Fixed the fix for Wyara
-rw-r--r-- | npc/009-2_Hurnscald/wyara.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/009-2_Hurnscald/wyara.txt b/npc/009-2_Hurnscald/wyara.txt index 2f69fc0c..cf56946a 100644 --- a/npc/009-2_Hurnscald/wyara.txt +++ b/npc/009-2_Hurnscald/wyara.txt @@ -14,9 +14,9 @@ set @STATUS_MAX, @STATUS_PURIFY_OVER; // This operation works around an earlier possible corruption of this state - if (@Q_status > @Q_STATUS_MAX) + if (@Q_status > @STATUS_MAX) set @Q_status, @STATUS_INITIAL; - if (@Q_status == @STATUS_PURIFY_OVER && (getskilllv(SKILL_MAGIC_NATURE) < 2)) + if ((@Q_status == @STATUS_PURIFY_OVER) && (getskilllv(SKILL_MAGIC_NATURE) < 2)) set @Q_status, @STATUS_INITIAL; callsub S_update_var; |