Fixed a coding mistake I made in r12142.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12145 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage 2008-01-28 15:03:08 +00:00
parent abfede067c
commit 6eec5a3eb7

View File

@ -1173,6 +1173,8 @@ int map_delobjectnofree(int id)
*------------------------------------------*/
int map_delobject(int id)
{
struct block_list* bl;
if( id < 0 || id >= MAX_FLOORITEM )
{
ShowError("map_delobject: invalid object id '%d'!\n", id);
@ -1182,8 +1184,9 @@ int map_delobject(int id)
if(objects[id]==NULL)
return 0;
bl = objects[id];
map_delobjectnofree(id);
map_freeblock(objects[id]);
map_freeblock(bl);
return 0;
}