diff options
author | momacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-12-27 03:49:29 +0000 |
---|---|---|
committer | momacabu <momacabu@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-12-27 03:49:29 +0000 |
commit | f4867954028b6c7b4d37c9860696578b27d6dbd1 (patch) | |
tree | 64fb6aff134126f9eef4af54232dbb1cd0424b10 /src/map/status.h | |
parent | eb2af623ae935795182e062375094e458ead1dc5 (diff) | |
download | hercules-f4867954028b6c7b4d37c9860696578b27d6dbd1.tar.gz hercules-f4867954028b6c7b4d37c9860696578b27d6dbd1.tar.bz2 hercules-f4867954028b6c7b4d37c9860696578b27d6dbd1.tar.xz hercules-f4867954028b6c7b4d37c9860696578b27d6dbd1.zip |
* Implemented `useskilltopc' (tid:74685), and now if desired npcs can carry status such as str, atk, def, etc and level.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17048 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r-- | src/map/status.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/status.h b/src/map/status.h index 1e9245af2..9e162faeb 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -1786,6 +1786,7 @@ int status_change_clear_buffs(struct block_list* bl, int type); #define status_calc_homunculus(hd, first) status_calc_bl_(&(hd)->bl, SCB_ALL, first) #define status_calc_mercenary(md, first) status_calc_bl_(&(md)->bl, SCB_ALL, first) #define status_calc_elemental(ed, first) status_calc_bl_(&(ed)->bl, SCB_ALL, first) +#define status_calc_npc(nd, first) status_calc_bl_(&(nd)->bl, SCB_ALL, first) void status_calc_bl_(struct block_list *bl, enum scb_flag flag, bool first); int status_calc_mob_(struct mob_data* md, bool first); |