From 6ba05ca392f80dcf617e1524c58318b16de46561 Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Fri, 12 Feb 2016 20:46:52 -0600 Subject: [PATCH] Changed "MOTD" to more correct "Notice" header --- LilithPort/MainForm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LilithPort/MainForm.cpp b/LilithPort/MainForm.cpp index 3b8224d..51f86fb 100644 --- a/LilithPort/MainForm.cpp +++ b/LilithPort/MainForm.cpp @@ -654,7 +654,7 @@ void MainForm::ReceivePackets(IAsyncResult^ asyncResult) case PH_NOTICE: if(UDP != nullptr){ - form->WriteMessage(L"[Message of the Day]-------------------\n", SystemMessageColor); + form->WriteMessage(L"[Notice]-------------------\n", SystemMessageColor); form->WriteNotice(Encoding::Unicode->GetString(rcv, 2, (rcv->Length)-2)); form->WriteMessage(L"-------------------------------\n", SystemMessageColor); }