summaryrefslogtreecommitdiffstats
path: root/signet/Table.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'signet/Table.cpp')
-rw-r--r--signet/Table.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/signet/Table.cpp b/signet/Table.cpp
index 5cd6373d..89012237 100644
--- a/signet/Table.cpp
+++ b/signet/Table.cpp
@@ -38,5 +38,11 @@ void Signet::Table::packetReceived(QTcpSocket* client, Protocol::Packet* packet)
// TODO: Handle the packet
}
else
- Protocol::PacketMaker::unknownReceiver(client);
+ {
+ if (receiver == "spectators")
+ {
+ }
+ else
+ Protocol::PacketMaker::unknownReceiver(client);
+ }
}