diff options
author | MadCamel <madcamel@gmail.com> | 2010-09-28 20:50:24 -0400 |
---|---|---|
committer | MadCamel <madcamel@gmail.com> | 2010-09-28 20:50:24 -0400 |
commit | 8fb3575d486e97f5f2d2f405690484d554153ba1 (patch) | |
tree | 0f07cb458840a9a9b3efec57fb99edcbf17e4fad /src/map | |
parent | 5d4ccf8198953c479d10902eddb2ac8468057307 (diff) | |
download | tmwa-8fb3575d486e97f5f2d2f405690484d554153ba1.tar.gz tmwa-8fb3575d486e97f5f2d2f405690484d554153ba1.tar.bz2 tmwa-8fb3575d486e97f5f2d2f405690484d554153ba1.tar.xz tmwa-8fb3575d486e97f5f2d2f405690484d554153ba1.zip |
Changed drop rate to once every 50ms. This should bring the "spice"
back into drop parties, as the former rate of 200ms made them fairly
lame.
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 378f076..6d52bb1 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9442,7 +9442,7 @@ func_table clif_parse_func_table[0x220] = { clif_parse_TakeItem, 400 }, // 9f { NULL, 0 }, // a0 { NULL, 0 }, // a1 - { clif_parse_DropItem, 200 }, // a2 + { clif_parse_DropItem, 50 }, // a2 { NULL, 0 }, // a3 { NULL, 0 }, // a4 { NULL, 0 }, // a5 |