diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-16 07:28:46 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-16 07:28:46 +0000 |
commit | 11f60b00d19a194ee4a0cdb4b889aed9ebe96140 (patch) | |
tree | 65ff473efb3f1eb6a0e331d479206d715b297a03 /src/map/pc.h | |
parent | 6caf74f06f019e4edf78e86c435c5a36c0178566 (diff) | |
download | hercules-11f60b00d19a194ee4a0cdb4b889aed9ebe96140.tar.gz hercules-11f60b00d19a194ee4a0cdb4b889aed9ebe96140.tar.bz2 hercules-11f60b00d19a194ee4a0cdb4b889aed9ebe96140.tar.xz hercules-11f60b00d19a194ee4a0cdb4b889aed9ebe96140.zip |
Added changes missing from the previous update (followup to r12710).
Corrected party invite failure not informing the inviting player.
Cleaned up some foreach() code int_party.c.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12711 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 42a28c78c..bd2baea96 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -295,7 +295,9 @@ struct map_session_data { int zeny, weight; } deal; - int party_invite,party_invite_account; + bool party_creating; // whether the char is requesting party creation + bool party_joining; // whether the char is accepting party invitation + int party_invite, party_invite_account; // for handling party invitation (holds party id and account id) int adopt_invite; // Adoption int guild_invite,guild_invite_account; |