diff options
-rw-r--r-- | npc/017-1/stranger.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/017-1/stranger.txt b/npc/017-1/stranger.txt index 8e83c9ea6..1beeb5264 100644 --- a/npc/017-1/stranger.txt +++ b/npc/017-1/stranger.txt @@ -8,7 +8,7 @@ // Months: February, May, August, September 017-1,44,37,0 script Stranger#LoF NPC_LOF_STRANGER,{ - if (!$@GM_OVERRIDE && gettime(GETTIME_MONTH) % 3 != 2 || gettime(GETTIME_DAYOFMONTH) < 18 || gettime(GETTIME_DAYOFMONTH) > 25) { + if (!$@GM_OVERRIDE && (gettime(GETTIME_MONTH) % 3 != 2 || (gettime(GETTIME_DAYOFMONTH) < 18 && gettime(GETTIME_DAYOFMONTH) > 25))) { dispbottom l("An error with Stranger#LoF happened! Please report!!"); disablenpc .name$; end; |