summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorpanikon <panikon@zoho.com>2014-01-15 23:34:37 -0200
committerpanikon <panikon@zoho.com>2014-01-15 23:34:37 -0200
commit0267cad28133b4c245f1cf100a24ab8a14cf2a73 (patch)
treec420d1736d3b4db4c98f8164b0c5c673d2fc781a /src/map/clif.c
parent761d3eb8291c997a627dc42da39913eb52abfce3 (diff)
downloadhercules-0267cad28133b4c245f1cf100a24ab8a14cf2a73.tar.gz
hercules-0267cad28133b4c245f1cf100a24ab8a14cf2a73.tar.bz2
hercules-0267cad28133b4c245f1cf100a24ab8a14cf2a73.tar.xz
hercules-0267cad28133b4c245f1cf100a24ab8a14cf2a73.zip
Correct minor mistakes as pointed by MishimaHaruna
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 77d4d20d8..1bb68b212 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -14154,7 +14154,7 @@ void clif_parse_FriendsListRemove(int fd, struct map_session_data *sd)
}
} else { //friend not online -- ask char server to delete from his friendlist
- if(chrif->removefriend(char_id,sd->status.char_id)) { // char-server offline, abort
+ if(!chrif->removefriend(char_id,sd->status.char_id)) { // char-server offline, abort
clif->message(fd, msg_txt(673)); //"This action can't be performed at the moment. Please try again later."
return;
}