diff options
author | flaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-10-10 17:25:15 +0000 |
---|---|---|
committer | flaviojs <flaviojs@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-10-10 17:25:15 +0000 |
commit | 0f7d8af5eba0c587328cb57c79a2378ac533a3f5 (patch) | |
tree | 81ce5b860984badb7ba5e16ab7b96cb971c1584e /src/map/party.c | |
parent | a8ee3c14340344c50c34514520c165aa283e91e0 (diff) | |
download | hercules-0f7d8af5eba0c587328cb57c79a2378ac533a3f5.tar.gz hercules-0f7d8af5eba0c587328cb57c79a2378ac533a3f5.tar.bz2 hercules-0f7d8af5eba0c587328cb57c79a2378ac533a3f5.tar.xz hercules-0f7d8af5eba0c587328cb57c79a2378ac533a3f5.zip |
* Add correct reply when player invited to party isn't found.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14970 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/party.c')
-rw-r--r-- | src/map/party.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/party.c b/src/map/party.c index 803c8d491..0ef07864d 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -338,8 +338,8 @@ int party_invite(struct map_session_data *sd,struct map_session_data *tsd) nullpo_ret(sd); if( ( p = party_search(sd->status.party_id) ) == NULL ) return 0; - if( tsd == NULL) { //TODO: Find the correct reply packet. - clif_displaymessage(sd->fd, msg_txt(3)); + if( tsd == NULL) { + clif_party_inviteack(sd, "", 7); return 0; } |