diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-07 20:23:24 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-02-07 20:23:24 +0000 |
commit | ec70b501945e9c74c83a07f43ffc2c3a4cc97019 (patch) | |
tree | 415195bc61c270afca42a19d8309aac767c17539 /src/char/int_party.c | |
parent | 37a7546e284e9f330b137178d6c4646842bde97f (diff) | |
download | hercules-ec70b501945e9c74c83a07f43ffc2c3a4cc97019.tar.gz hercules-ec70b501945e9c74c83a07f43ffc2c3a4cc97019.tar.bz2 hercules-ec70b501945e9c74c83a07f43ffc2c3a4cc97019.tar.xz hercules-ec70b501945e9c74c83a07f43ffc2c3a4cc97019.zip |
- Removed function inter_party_logged, which after some testing and thinking, has been concluded is no longer necessary.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9818 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char/int_party.c')
-rw-r--r-- | src/char/int_party.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/char/int_party.c b/src/char/int_party.c index 0612afb0b..50a33295b 100644 --- a/src/char/int_party.c +++ b/src/char/int_party.c @@ -394,33 +394,6 @@ int mapif_party_optionchanged(int fd,struct party *p, int account_id, int flag) return 0; } -//Checks whether the even-share setting of a party is broken when a character logs in. [Skotlex] -int inter_party_logged(int party_id, int account_id, int char_id) -{ - struct party_data *p; - int i; - if (!party_id) - return 0; - - p = idb_get(party_db, party_id); - if(p==NULL) - return 0; - for (i = 0; i < MAX_PARTY; i++) - if(p->party.member[i].account_id == account_id && - p->party.member[i].char_id == char_id) - { - p->party.member[i].online = 1; - p->party.count++; - if(p->party.member[i].lv < p->min_lv || - p->party.member[i].lv > p->max_lv) - int_party_check_lv(p); - //Send online update to map servers - mapif_party_membermoved(&p->party, i); - break; - } - return 0; -} - // パ?ティ?退通知 int mapif_party_leaved(int party_id,int account_id, int char_id) { unsigned char buf[16]; |