summaryrefslogtreecommitdiff
path: root/src/emap/parse.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-09-24 23:51:38 +0300
committerAndrei Karas <akaras@inbox.ru>2015-09-24 23:51:38 +0300
commit38e12363df013928b2c236afeefef5c71fac6020 (patch)
treeb38a29a371dfe5db0b9e665c8a5f5159415d19b9 /src/emap/parse.c
parent55626607c4d26b070c860437fe31ba825d24c18d (diff)
downloadevol-hercules-38e12363df013928b2c236afeefef5c71fac6020.tar.gz
evol-hercules-38e12363df013928b2c236afeefef5c71fac6020.tar.bz2
evol-hercules-38e12363df013928b2c236afeefef5c71fac6020.tar.xz
evol-hercules-38e12363df013928b2c236afeefef5c71fac6020.zip
Change getcell functions calls for working with latest server sources.
Diffstat (limited to 'src/emap/parse.c')
-rw-r--r--src/emap/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emap/parse.c b/src/emap/parse.c
index 3025aaa..f9599d0 100644
--- a/src/emap/parse.c
+++ b/src/emap/parse.c
@@ -162,7 +162,7 @@ void map_parse_pet_move(int fd)
short y = RFIFOW(fd, 8);
struct block_list *pdBl = &sd->pd->bl;
- if (map->getcell(pdBl->m, x, y, CELL_CHKPASS))
+ if (map->getcell(pdBl->m, pdBl, x, y, CELL_CHKPASS))
unit->walktoxy(pdBl, x, y, 0);
}