From ec70b501945e9c74c83a07f43ffc2c3a4cc97019 Mon Sep 17 00:00:00 2001 From: skotlex Date: Wed, 7 Feb 2007 20:23:24 +0000 Subject: - 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 --- src/char/int_party.c | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'src/char/int_party.c') 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]; -- cgit v1.2.3-60-g2f50