diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-15 10:49:42 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-15 10:49:42 +0000 |
commit | c8cbcbd5f6e9a8d190adfebaeda425e4c4490408 (patch) | |
tree | 151b3e4044c03ec3e3cbeb75cad9f9b31c5a915c /src/map/party.c | |
parent | 7977fec1bc9808666bc5826a01a8505701da603c (diff) | |
download | hercules-c8cbcbd5f6e9a8d190adfebaeda425e4c4490408.tar.gz hercules-c8cbcbd5f6e9a8d190adfebaeda425e4c4490408.tar.bz2 hercules-c8cbcbd5f6e9a8d190adfebaeda425e4c4490408.tar.xz hercules-c8cbcbd5f6e9a8d190adfebaeda425e4c4490408.zip |
Removed the party_share_conflict() check.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12959 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/party.c')
-rw-r--r-- | src/map/party.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/map/party.c b/src/map/party.c index 4a53d5038..28c5154e7 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -425,7 +425,6 @@ int party_member_added(int party_id,int account_id,int char_id, int flag) p->data[i].sd = sd; } - party_check_conflict(sd); //FIXME: is this neccessary? clif_party_member_info(p,sd); clif_party_option(p,sd,0x100); clif_party_info(p,sd); @@ -683,14 +682,6 @@ int party_recv_message(int party_id,int account_id,const char *mes,int len) return 0; } -int party_check_conflict(struct map_session_data *sd) -{ - nullpo_retr(0, sd); - - intif_party_checkconflict(sd->status.party_id,sd->status.account_id,sd->status.char_id); - return 0; -} - int party_skill_check(struct map_session_data *sd, int party_id, int skillid, int skilllv) { struct party_data *p; |