diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-20 15:08:43 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-20 15:08:43 +0000 |
commit | 838e87120758507b0be05b87af4a470f251e5bbd (patch) | |
tree | 08532a366d2d091b69d2530724bd3d1434d79cac /src/map/mob.c | |
parent | 99bc4b10c83859763ef0f21c70b3c519a31cf98e (diff) | |
download | hercules-838e87120758507b0be05b87af4a470f251e5bbd.tar.gz hercules-838e87120758507b0be05b87af4a470f251e5bbd.tar.bz2 hercules-838e87120758507b0be05b87af4a470f251e5bbd.tar.xz hercules-838e87120758507b0be05b87af4a470f251e5bbd.zip |
- Raised the amount of skills that can stack on a single cell before the "in-area/out-area" detection code breaks to 24 (from 8)
- Fixed a crash in clif_SkillInfoBlock if the passed player already disconnected.
- Added limiting drop rate to 100% from item-bonuses that depend on the mob's level so that "@autoloot 100" will catch them.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9270 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 36af27b17..3e5338654 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2020,6 +2020,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) drop_rate = battle_config.item_drop_adddrop_min; else if (drop_rate > battle_config.item_drop_adddrop_max) drop_rate = battle_config.item_drop_adddrop_max; + if (drop_rate > 10000) drop_rate = 10000; } else //it's positive, then it goes as it is |