From 99a1c463a193bc1cb0132f98be62df4aa21cf776 Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 26 Nov 2012 20:19:14 +0100 Subject: [PATCH] Changed: Changes in game_share --- code/ryzom/common/src/game_share/dyn_chat.cpp | 2 ++ code/ryzom/common/src/game_share/dyn_chat.h | 1 + 2 files changed, 3 insertions(+) diff --git a/code/ryzom/common/src/game_share/dyn_chat.cpp b/code/ryzom/common/src/game_share/dyn_chat.cpp index 5ba90b372..aae0015d7 100644 --- a/code/ryzom/common/src/game_share/dyn_chat.cpp +++ b/code/ryzom/common/src/game_share/dyn_chat.cpp @@ -138,6 +138,7 @@ CDynChatSession *CDynChatClient::getSession(TChanID chan) const CDynChatChan::CDynChatChan() : HistoricSize(0), HideBubble(false), + UniversalChannel(false), _FirstSession(NULL), _ID(CEntityId::Unknown), _DontBroadcastPlayerInputs(false), @@ -151,6 +152,7 @@ CDynChatChan::CDynChatChan() CDynChatChan::CDynChatChan(TChanID id, bool noBroadcast, bool forwardInput, bool unified) : HistoricSize(0), HideBubble(false), + UniversalChannel(false), _FirstSession(NULL), _ID(id), _DontBroadcastPlayerInputs(noBroadcast), diff --git a/code/ryzom/common/src/game_share/dyn_chat.h b/code/ryzom/common/src/game_share/dyn_chat.h index a5575a68f..081bf7434 100644 --- a/code/ryzom/common/src/game_share/dyn_chat.h +++ b/code/ryzom/common/src/game_share/dyn_chat.h @@ -131,6 +131,7 @@ public: bool Localized; // for EGS only ucstring Title; // gives the title of the channel when it is not translated (e.g Localized == false) bool HideBubble; // hide the display of bubble + bool UniversalChannel; // treat like universe channel public: CDynChatChan(); // CDynChatChan(TChanID id = NLMISC::CEntityId::Unknown, NLNET::TServiceId ownerServiceId, bool noBroadcast, bool forwadInput);