From b0f591540c7b1ff24e530530ee93275c8766513d Mon Sep 17 00:00:00 2001 From: Xackery Date: Tue, 13 Mar 2018 00:24:06 -0700 Subject: [PATCH] fixed minor typo --- world/nats_manager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/world/nats_manager.cpp b/world/nats_manager.cpp index 16474d7f5..b50aa83f2 100644 --- a/world/nats_manager.cpp +++ b/world/nats_manager.cpp @@ -10,7 +10,7 @@ #include "../common/eqemu_logsys.h" #ifndef PROTO_H #define PROTO_H -#include "../common/message->pb.h" +#include "../common/message.pb.h" #endif #include "../common/servertalk.h" #include "../common/string_util.h" @@ -39,7 +39,7 @@ NatsManager::~NatsManager() nats_Close(); } -bool NatsManager::connect() { +bool NatsManager::connect() { auto ncs = natsConnection_Status(conn); if (ncs == CONNECTED) return true; @@ -154,7 +154,7 @@ void NatsManager::OnEmoteMessage(ServerEmoteMessage_Struct* msg) { message->set_message(msg->message); message->set_to(msg->to); message->set_is_emote(true); - SendChannelMessage(message); + //SendChannelMessage(message); return; }