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/clif.c | |
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/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 17acf4ee7..95be2f9c5 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -4926,7 +4926,7 @@ int clif_skill_estimation(struct map_session_data *sd,struct block_list *dst) +(battle_config.estimation_type&2?status->def2:0);
WBUFW(buf,14)=status->race;
WBUFW(buf,16)= (battle_config.estimation_type&1?status->mdef:0)
- +(battle_config.estimation_type&2?status->mdef2 - (status->vit>>1):0);
+ +(battle_config.estimation_type&2?status->mdef2:0);
WBUFW(buf,18)= status->def_ele;
for(i=0;i<9;i++)
WBUFB(buf,20+i)= (unsigned char)battle_attr_fix(NULL,dst,100,i+1,status->def_ele, status->ele_lv);
|