From e6b60185ffc87bc9d701fd5852bb492bf64e5c97 Mon Sep 17 00:00:00 2001 From: ultramage Date: Sat, 5 Jan 2008 21:41:22 +0000 Subject: Corrected one place belonging to the no-stacking mod that I missed when doing the mapcell update (followup to r12003). Added info from newest clients to packet db. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12015 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/map/map.c b/src/map/map.c index bc5235192..b26af3f36 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -265,7 +265,7 @@ void map_addblcell(struct block_list *bl) { if( bl->m<0 || bl->x<0 || bl->x>=map[bl->m].xs || bl->y<0 || bl->y>=map[bl->m].ys || !(bl->type&BL_CHAR) ) return; - map[bl->m].cell_bl[bl->x+bl->y*map[bl->m].xs]++; + map[bl->m].cell[bl->x+bl->y*map[bl->m].xs].cell_bl++; return; } @@ -273,7 +273,7 @@ void map_delblcell(struct block_list *bl) { if( bl->m <0 || bl->x<0 || bl->x>=map[bl->m].xs || bl->y<0 || bl->y>=map[bl->m].ys || !(bl->type&BL_CHAR) ) return; - map[bl->m].cell_bl[bl->x+bl->y*map[bl->m].xs]--; + map[bl->m].cell[bl->x+bl->y*map[bl->m].xs].cell_bl--; } #endif -- cgit v1.2.3-70-g09d2