diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-14 16:34:06 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-14 16:34:06 +0000 |
commit | 21912bafe72cf7685679cf95b705ad0d115ff7c7 (patch) | |
tree | 6447e8903b3251412a5d88172f033e552f811149 /src/map/status.h | |
parent | e2b4fe133592f1bff5b6aae38a562bf095e6bea3 (diff) | |
download | hercules-21912bafe72cf7685679cf95b705ad0d115ff7c7.tar.gz hercules-21912bafe72cf7685679cf95b705ad0d115ff7c7.tar.bz2 hercules-21912bafe72cf7685679cf95b705ad0d115ff7c7.tar.xz hercules-21912bafe72cf7685679cf95b705ad0d115ff7c7.zip |
- Estimation /Sense/ whatever will no longer hide the vit bonus to mdef2, as reported by Playtester.
- Updated Summon Flora to summon the max number of possible plants on one cast. It will consume as many bottles as monsters summoned. Also cleaned up the function to be usable by non players.
- Added function status_get_name
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8756 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 c53387026..2b74a41a5 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -559,6 +559,7 @@ int status_revive(struct block_list *bl, unsigned char per_hp, unsigned char per struct regen_data *status_get_regen_data(struct block_list *bl);
struct status_data *status_get_status_data(struct block_list *bl);
struct status_data *status_get_base_status(struct block_list *bl);
+const char * status_get_name(struct block_list *bl);
int status_get_class(struct block_list *bl);
int status_get_lv(struct block_list *bl);
#define status_get_range(bl) status_get_status_data(bl)->rhw.range
|