diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-24 23:51:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-24 23:51:38 +0300 |
commit | 38e12363df013928b2c236afeefef5c71fac6020 (patch) | |
tree | b38a29a371dfe5db0b9e665c8a5f5159415d19b9 /src/emap/parse.c | |
parent | 55626607c4d26b070c860437fe31ba825d24c18d (diff) | |
download | plugin-38e12363df013928b2c236afeefef5c71fac6020.tar.gz plugin-38e12363df013928b2c236afeefef5c71fac6020.tar.bz2 plugin-38e12363df013928b2c236afeefef5c71fac6020.tar.xz plugin-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.c | 2 |
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); } |