diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/daily.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/daily.txt b/npc/functions/daily.txt index b64607db8..c7104e45b 100644 --- a/npc/functions/daily.txt +++ b/npc/functions/daily.txt @@ -108,7 +108,7 @@ function script daily_login_bonus_handler { // Therefore, contributors get an extra reward .@m=htget($@CONTRIBUTORS, strtolower(strcharinfo(0)), 0); if (.@m) - getitem StrangeCoin, max(9, .@m/100)+1; + getitem StrangeCoin, min(9, .@m/100)+1; dispbottom "##B##2"+l("It's TMW2 Project anniversary!")+" "+l("We thank every developer which helped this project thus far!")+"##b##0"; } } |