summaryrefslogtreecommitdiff
path: root/src/chathandler.cpp
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-07-31 05:26:08 +0000
committerAaron Marks <nymacro@gmail.com>2005-07-31 05:26:08 +0000
commit18b778662388e98e90b13f28f28a83911ee96e95 (patch)
tree5e16ba5adc9cdc3d4f84769e0a4e93ff7155c7a0 /src/chathandler.cpp
parentd593cb2395ddc144844297ea12122c12e60d3bba (diff)
downloadmanaserv-18b778662388e98e90b13f28f28a83911ee96e95.tar.gz
manaserv-18b778662388e98e90b13f28f28a83911ee96e95.tar.bz2
manaserv-18b778662388e98e90b13f28f28a83911ee96e95.tar.xz
manaserv-18b778662388e98e90b13f28f28a83911ee96e95.zip
Added beginnings of game core logic and state.
Fixed a few problems with SQL queries using different SQL DB backends. I forget everything else.
Diffstat (limited to 'src/chathandler.cpp')
-rw-r--r--src/chathandler.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/chathandler.cpp b/src/chathandler.cpp
index bd48a3d5..9884861d 100644
--- a/src/chathandler.cpp
+++ b/src/chathandler.cpp
@@ -34,6 +34,7 @@ void ChatHandler::receiveMessage(NetComputer &computer, MessageIn &message)
{
case CMSG_SAY:
{
+ // chat to people around area
std::string text = message.readString();
short channel = message.readShort();
std::cout << "Say (" << channel << "): " << text << std::endl;