summaryrefslogtreecommitdiff
path: root/core/Messenger.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-07-13 22:28:25 -0400
committerirungentoo <irungentoo@gmail.com>2013-07-13 22:28:25 -0400
commit96b8cb1c43a767c586fb1770fdfb70003de186c0 (patch)
treea1c375766aaee54e7b785e660704254a0c714379 /core/Messenger.c
parent383630b3d4aee4654e95e9952dc1debc8d339916 (diff)
Fixed @ appearing in messages.
Diffstat (limited to 'core/Messenger.c')
-rw-r--r--core/Messenger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Messenger.c b/core/Messenger.c
index 37e369fa..2e381f81 100644
--- a/core/Messenger.c
+++ b/core/Messenger.c
@@ -282,7 +282,7 @@ static void doFriends()
282 { 282 {
283 if(temp[0] == 64) 283 if(temp[0] == 64)
284 { 284 {
285 (*friend_message)(i, temp, len); 285 (*friend_message)(i, temp + 1, len - 1);
286 } 286 }
287 } 287 }
288 else 288 else