summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-05 21:41:22 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-01-05 21:41:22 +0000
commite6b60185ffc87bc9d701fd5852bb492bf64e5c97 (patch)
tree59bb1826afd7c441af0219a6acfc437dc479bcba /src/map/map.c
parentaeb00708cbef98f7ae2e6582ce9a7fdd4bdc37a2 (diff)
downloadhercules-e6b60185ffc87bc9d701fd5852bb492bf64e5c97.tar.gz
hercules-e6b60185ffc87bc9d701fd5852bb492bf64e5c97.tar.bz2
hercules-e6b60185ffc87bc9d701fd5852bb492bf64e5c97.tar.xz
hercules-e6b60185ffc87bc9d701fd5852bb492bf64e5c97.zip
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
Diffstat (limited to 'src/map/map.c')
-rw-r--r--src/map/map.c4
1 files changed, 2 insertions, 2 deletions
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