summaryrefslogtreecommitdiff
path: root/src/map/mob.h
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 00:45:55 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 00:45:55 +0000
commit3cf706a09c00cf3ceee18a1a26446e3edafdbbec (patch)
treed6238ce920f94a6fb31d94da69e2cb4094478e3b /src/map/mob.h
parentca5e45d061b2d70499651d437a2d7f97f0ebbb67 (diff)
downloadhercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.tar.gz
hercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.tar.bz2
hercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.tar.xz
hercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.zip
- Changed slave chasing from using unit_walktobl to map_search_freecell + unit_walktoxy, since the previous behaviour makes all slaves always end up on the same cell.
- Changed some function declarations to take x,y arguments as short rather than int. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6024 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.h')
-rw-r--r--src/map/mob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.h b/src/map/mob.h
index 8fb930e1f..3a7a36d4a 100644
--- a/src/map/mob.h
+++ b/src/map/mob.h
@@ -114,7 +114,7 @@ int mobdb_searchname_array(struct mob_db** data, int size, const char *str);
int mobdb_checkid(const int id);
struct view_data* mob_get_viewdata(int class_);
int mob_once_spawn(struct map_session_data *sd,char *mapname,
- int x,int y,const char *mobname,int class_,int amount,const char *event);
+ short x,short y,const char *mobname,int class_,int amount,const char *event);
int mob_once_spawn_area(struct map_session_data *sd,char *mapname,
int x0,int y0,int x1,int y1,
const char *mobname,int class_,int amount,const char *event);