diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 19:49:38 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 19:49:38 +0000 |
commit | 0fb0df3a0fa3ac24f9f068d0c1ac664beec03354 (patch) | |
tree | db71917a103760aab874f5ff37c4546f0124d04f /src/map/mob.h | |
parent | b6e528890886089169555661a769fc14361dddb0 (diff) | |
download | hercules-0fb0df3a0fa3ac24f9f068d0c1ac664beec03354.tar.gz hercules-0fb0df3a0fa3ac24f9f068d0c1ac664beec03354.tar.bz2 hercules-0fb0df3a0fa3ac24f9f068d0c1ac664beec03354.tar.xz hercules-0fb0df3a0fa3ac24f9f068d0c1ac664beec03354.zip |
- Corrected SC_INTRAVISION not starting.
- Small cleanups (line terminators, indenting)
- Fixed crash when attempting to read a Label as a string on a script (thanks to End of Exam)
- Fixed possible crash when changing a chat-room's owner (thanks to End of Exam)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8639 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.h')
-rw-r--r-- | src/map/mob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.h b/src/map/mob.h index 4c83e14c6..bb4e1ac57 100644 --- a/src/map/mob.h +++ b/src/map/mob.h @@ -144,7 +144,7 @@ int mobdb_searchname(const char *str); 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_);
-struct mob_data *mob_once_spawn_sub(struct block_list *bl, int m,
+struct mob_data *mob_once_spawn_sub(struct block_list *bl, int m,
short x, short y, const char *mobname, int class_, const char *event);
int mob_once_spawn(struct map_session_data *sd,char *mapname,
short x,short y,const char *mobname,int class_,int amount,const char *event);
|