summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-10 17:15:37 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-10 17:15:37 +0000
commitcb03e17fdc83704678b67e20453511d3f2c41d64 (patch)
tree5d1289e986c73f95dc06ee3e49f675e72a7f93f8 /src/map/mob.c
parent4b2f3fcbde7d956c0a4f0f7ebfdb9c9ac1167c18 (diff)
downloadhercules-cb03e17fdc83704678b67e20453511d3f2c41d64.tar.gz
hercules-cb03e17fdc83704678b67e20453511d3f2c41d64.tar.bz2
hercules-cb03e17fdc83704678b67e20453511d3f2c41d64.tar.xz
hercules-cb03e17fdc83704678b67e20453511d3f2c41d64.zip
Performance Improvement; Server shut down, instance clear up, and @cleanmap are now all faster. Instead of wasting time doing a dbmap lookup (of a data it already possessed!) on each floor item being deleted, it'll use the data to clean the item.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16901 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 50a9397da..3c485ee58 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -1629,7 +1629,7 @@ static bool mob_ai_sub_hard(struct mob_data *md, unsigned int tick)
unit_set_walkdelay(&md->bl, tick, md->status.amotion, 1);
}
//Clear item.
- map_clearflooritem (tbl->id);
+ map_clearflooritem (tbl);
mob_unlocktarget (md,tick);
return true;
}