summaryrefslogtreecommitdiff
path: root/src/map/instance.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/instance.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/instance.c')
-rw-r--r--src/map/instance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/instance.c b/src/map/instance.c
index 9d0b8246e..f5ae125a6 100644
--- a/src/map/instance.c
+++ b/src/map/instance.c
@@ -271,7 +271,7 @@ int instance_cleanup_sub(struct block_list *bl, va_list ap) {
//There is no need for this, the pet is removed together with the player. [Skotlex]
break;
case BL_ITEM:
- map_clearflooritem(bl->id);
+ map_clearflooritem(bl);
break;
case BL_SKILL:
skill_delunit((struct skill_unit *) bl);