diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-10 03:58:15 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-10 03:58:15 +0000 |
commit | e2856893e1bdaba52c1ff3e0cbd7a4635e7af90b (patch) | |
tree | 2bb49221533209ffdbb7e9cecb107fc734d57872 /src/map/mob.c | |
parent | 8542722b5f295eb8d282cc22f894ec49b5368f40 (diff) | |
download | hercules-e2856893e1bdaba52c1ff3e0cbd7a4635e7af90b.tar.gz hercules-e2856893e1bdaba52c1ff3e0cbd7a4635e7af90b.tar.bz2 hercules-e2856893e1bdaba52c1ff3e0cbd7a4635e7af90b.tar.xz hercules-e2856893e1bdaba52c1ff3e0cbd7a4635e7af90b.zip |
- Added structure party_data and party_member_data to the map server to hold party-specific required information about parties including Monk/TK/SG/SN states and party member count.
- party Hp updates are no longer done each time the Hp is modified, but together with the party xy timer.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7083 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 8d9b69626..65331f343 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1694,7 +1694,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) *mvp_sd = NULL, *second_sd = NULL,*third_sd = NULL; struct { - struct party *p; + struct party_data *p; int id,zeny; unsigned int base_exp,job_exp; } pt[DAMAGELOG_SIZE]; @@ -1870,7 +1870,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) if(j==pnum){ //Possibly add party. pt[pnum].p = party_search(temp); - if(pt[pnum].p && pt[pnum].p->exp) + if(pt[pnum].p && pt[pnum].p->party.exp) { pt[pnum].id=temp; pt[pnum].base_exp=base_exp; |