diff options
-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; |