From 15eaf4e6d1309cea96e4d98d69ad641f5cc66784 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sat, 20 Sep 2014 14:57:15 -0400 Subject: [PATCH] Fix issue with not online message from tells --- zone/worldserver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/worldserver.cpp b/zone/worldserver.cpp index c54c2e886..1db473b0e 100644 --- a/zone/worldserver.cpp +++ b/zone/worldserver.cpp @@ -182,7 +182,7 @@ void WorldServer::Process() { else if (scm->queued == 2) // tell queue was full client->Tell_StringID(QUEUE_TELL_FULL, scm->to, scm->message); else if (scm->queued == 3) // person was offline - client->Message_StringID(MT_TellEcho, TOLD_NOT_ONLINE); + client->Message_StringID(MT_TellEcho, TOLD_NOT_ONLINE, scm->to); else // normal stuff client->ChannelMessageSend(scm->from, scm->to, scm->chan_num, scm->language, scm->message); if (!scm->noreply && scm->chan_num != 2) { //dont echo on group chat