diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-13 03:54:35 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-13 03:54:35 +0000 |
commit | beeda58fd5525866d700d55d5504213bc2bd70fe (patch) | |
tree | b1aeb3e0e5cbd0ee144b270045f167368a7bfffb /src/map/party.h | |
parent | cd6cab9425aec0f7f5f38e1e797db4b284b5c013 (diff) | |
download | hercules-beeda58fd5525866d700d55d5504213bc2bd70fe.tar.gz hercules-beeda58fd5525866d700d55d5504213bc2bd70fe.tar.bz2 hercules-beeda58fd5525866d700d55d5504213bc2bd70fe.tar.xz hercules-beeda58fd5525866d700d55d5504213bc2bd70fe.zip |
- Updated clif_disp_onlyself to not use dynamic memory and write directly to the player's buffer.
- Updated @noask to also tell the rejected what he has just rejected (added msg_athena entries for each of the different requests)
- Since noask already does a player lookup, updated the corresponding parsing functions to take the player rather than the player id (prevents double lookups)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7117 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/party.h')
-rw-r--r-- | src/map/party.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/party.h b/src/map/party.h index c305a6f51..9debe642b 100644 --- a/src/map/party.h +++ b/src/map/party.h @@ -20,7 +20,7 @@ struct party_data *party_searchname(char *str); int party_create(struct map_session_data *sd,char *name, int item, int item2);
int party_created(int account_id,int char_id,int fail,int party_id,char *name);
int party_request_info(int party_id);
-int party_invite(struct map_session_data *sd,int account_id);
+int party_invite(struct map_session_data *sd,struct map_session_data *tsd);
int party_member_added(int party_id,int account_id,int char_id,int flag);
int party_leave(struct map_session_data *sd);
int party_removemember(struct map_session_data *sd,int account_id,char *name);
|