diff options
author | Stijn Buys <ingar@osirion.org> | 2009-01-25 17:58:12 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2009-01-25 17:58:12 +0000 |
commit | 60749486f978b8220b707541cf478fc87d8d0b36 (patch) | |
tree | a943e04276092f6f47547509238f208432bec846 | |
parent | f584439abb26f934632089b6333a4fd47c29d3ef (diff) |
fix dedicated server chat messages
-rw-r--r-- | src/core/gameserver.cc | 5 | ||||
-rw-r--r-- | src/dedicated/dedicated.cc | 5 | ||||
-rw-r--r-- | src/dedicated/dedicated.h | 3 |
3 files changed, 13 insertions, 0 deletions
diff --git a/src/core/gameserver.cc b/src/core/gameserver.cc index f7838a4..fc7a814 100644 --- a/src/core/gameserver.cc +++ b/src/core/gameserver.cc @@ -324,6 +324,11 @@ void GameServer::broadcast(const Message::Channel channel, const std::string tex player->message(channel, text); } } + + // console is not in the player list + if (Cvar::sv_dedicated->value()) { + localplayer()->message(channel, text); + } } // broadcast a sound event to all players diff --git a/src/dedicated/dedicated.cc b/src/dedicated/dedicated.cc index 15860a3..43c636e 100644 --- a/src/dedicated/dedicated.cc +++ b/src/dedicated/dedicated.cc @@ -92,6 +92,11 @@ void Dedicated::shutdown() quit(0); } +void Dedicated::notify_message(const core::Message::Channel channel, const std::string &message) +{ + con_print << message << std::endl; +} + void Dedicated::quit(int status) { core::Application::quit(status); diff --git a/src/dedicated/dedicated.h b/src/dedicated/dedicated.h index 4b1f584..f458895 100644 --- a/src/dedicated/dedicated.h +++ b/src/dedicated/dedicated.h @@ -29,6 +29,9 @@ public: /// quit the server Application virtual void quit(int status); + + /// text notifications from the core + virtual void notify_message(const core::Message::Channel channel, const std::string &message); }; } // namespace dedicated |