diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-02-15 10:30:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-02-15 10:30:09 -0300 |
commit | 003362ec6f9d6868d4c64dad87551c1300e4f5db (patch) | |
tree | 8ac9061889eaaaefe0e27453f2792265bd411a71 | |
parent | d7e4c9686f1fad1ee615184bdf899144239a96f0 (diff) | |
download | serverdata-003362ec6f9d6868d4c64dad87551c1300e4f5db.tar.gz serverdata-003362ec6f9d6868d4c64dad87551c1300e4f5db.tar.bz2 serverdata-003362ec6f9d6868d4c64dad87551c1300e4f5db.tar.xz serverdata-003362ec6f9d6868d4c64dad87551c1300e4f5db.zip |
Fix Lora Tay
-rw-r--r-- | npc/017-3/loratay.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/017-3/loratay.txt b/npc/017-3/loratay.txt index ddef7616d..e44ca0ed9 100644 --- a/npc/017-3/loratay.txt +++ b/npc/017-3/loratay.txt @@ -24,8 +24,8 @@ L_Valentine: .@dye = .colors[gettime(7) % getarraysize(.colors)]; - .@pdy = .colors[(1-gettime(7)) % getarraysize(.colors)]; - .@ndy = .colors[(1+gettime(7)) % getarraysize(.colors)]; + .@pdy = .colors[(gettime(7)-1) % getarraysize(.colors)]; + .@ndy = .colors[(gettime(7)+1) % getarraysize(.colors)]; mesn; mesq l("It's valentine day, and I got my hands on a @@ model!", getitemlink(ValentineDress, .@dye)); next; |