diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-26 11:13:39 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-26 11:13:39 +0000 |
commit | 81d811f3c35d37e358f6874dd702923a0a934275 (patch) | |
tree | 1cd3966f751bfa6924f5bcb47fc7ec73bee0f0c7 /src/map/map.h | |
parent | 0aebc2311a3167c5f261f78ff7ab89a4b25a2ddb (diff) | |
download | hercules-81d811f3c35d37e358f6874dd702923a0a934275.tar.gz hercules-81d811f3c35d37e358f6874dd702923a0a934275.tar.bz2 hercules-81d811f3c35d37e358f6874dd702923a0a934275.tar.xz hercules-81d811f3c35d37e358f6874dd702923a0a934275.zip |
- Implemented official Convex Mirror (With help of Yomanda and Sirius White)
- Fixed SC_WARN don't receiving reflecting damage (Bug Report 1854).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12997 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index afa63c182..2f46c4e3e 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -569,6 +569,8 @@ void map_foreachmob(int (*func)(struct mob_data* md, va_list args), ...); void map_foreachnpc(int (*func)(struct npc_data* bl, va_list args), ...); void map_foreachiddb(int (*func)(struct block_list* bl, va_list args), ...); struct map_session_data * map_nick2sd(const char*); +struct mob_data * map_getmob_boss(int m); +struct mob_data * map_id2boss(int id); /// Bitfield of flags for the iterator. enum e_mapitflags |