diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-14 02:57:54 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-14 02:57:54 +0000 |
commit | aeabd9b6ae7cd6b59d6c8d85609559f132a464ee (patch) | |
tree | 79ddc466e006c81588c42743fada8e8e6bcf9164 /src/map/party.c | |
parent | 89097fc76e350f210c6e7ae7cd0fe26bf60ec026 (diff) | |
download | hercules-aeabd9b6ae7cd6b59d6c8d85609559f132a464ee.tar.gz hercules-aeabd9b6ae7cd6b59d6c8d85609559f132a464ee.tar.bz2 hercules-aeabd9b6ae7cd6b59d6c8d85609559f132a464ee.tar.xz hercules-aeabd9b6ae7cd6b59d6c8d85609559f132a464ee.zip |
- corrected Option_Xmas value in const.txt
- Wand of Hermode now dispells buffs only of allies.
- Fixed some null pointer checks in status_change_end.
- Corrected a crashy Warning message.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11910 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/party.c')
-rw-r--r-- | src/map/party.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/party.c b/src/map/party.c index bfaf21b8a..dc5ddb1f9 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -155,7 +155,7 @@ int party_check_member(struct party *p) ARR_FIND( 0, MAX_PARTY, j, p->member[j].account_id == sd->status.account_id && p->member[j].char_id == sd->status.char_id ); if( j == MAX_PARTY ) { - ShowWarning("party_check_member: '%s' (acc:%d) is not member of party '%s' (id:%d)\n",sd->status.char_id,sd->status.name,p->name,p->party_id); + ShowWarning("party_check_member: '%s' (acc:%d) is not member of party '%s' (id:%d)\n",sd->status.name,sd->status.account_id,p->name,p->party_id); sd->status.party_id = 0; } } |