summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-06 23:12:18 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-09-06 23:12:18 +0000
commitd7c7784e6328f5467b049e13d4bedaeaef57f495 (patch)
tree554db61eba46f06390f5363d7803a86356b34200 /src/map
parentf947fd2e918941c48c3a730b2387725c2dd2030d (diff)
downloadhercules-d7c7784e6328f5467b049e13d4bedaeaef57f495.tar.gz
hercules-d7c7784e6328f5467b049e13d4bedaeaef57f495.tar.bz2
hercules-d7c7784e6328f5467b049e13d4bedaeaef57f495.tar.xz
hercules-d7c7784e6328f5467b049e13d4bedaeaef57f495.zip
- Fixed the memset in status_calc_pc, corrects some mysterious bugs such as item-drop bonuses suddenly not working anymore.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8658 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r--src/map/map.h3
-rw-r--r--src/map/status.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h
index 5788efbdb..dcd87f294 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -708,7 +708,7 @@ struct map_session_data {
// zeroed structures end here
// zeroed vars start here.
int arrow_atk,arrow_ele,arrow_cri,arrow_hit;
- int nhealhp,nhealsp,nshealhp,nshealsp,nsshealhp,nsshealsp;
+ int nsshealhp,nsshealsp;
int critical_def,double_rate;
int long_attack_atk_rate; //Long range atk rate, not weapon based. [Skotlex]
int near_attack_def_rate,long_attack_def_rate,magic_def_rate,misc_def_rate;
@@ -952,7 +952,6 @@ struct mob_data {
struct {
int id;
int dmg;
- unsigned char to_homun; //[blackhole89] - determines whether this damage was dealt by homunculus or its master
} dmglog[DAMAGELOG_SIZE];
struct spawn_data *spawn; //Spawn data.
struct item *lootitem;
diff --git a/src/map/status.c b/src/map/status.c
index 4b05b494e..352d0da62 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -1674,6 +1674,8 @@ int status_calc_pc(struct map_session_data* sd,int first)
+ sizeof(sd->hp_loss_type)
+ sizeof(sd->hp_gain_value)
+ sizeof(sd->sp_gain_value)
+ + sizeof(sd->sp_vanish_rate)
+ + sizeof(sd->sp_vanish_per)
+ sizeof(sd->add_drop_count)
+ sizeof(sd->unbreakable)
+ sizeof(sd->unbreakable_equip)