--- a/QTfrontend/newnetclient.cpp Tue Jan 06 17:37:18 2009 +0000
+++ b/QTfrontend/newnetclient.cpp Tue Jan 06 17:51:39 2009 +0000
@@ -190,7 +190,7 @@
void HWNewNet::ParseCmd(const QStringList & lst)
{
-// qDebug() << "Server: " << lst;
+ qDebug() << "Server: " << lst;
if(!lst.size())
{
@@ -293,6 +293,7 @@
emit setReadyStatus(lst[1], true);
return;
}
+
if (lst[0] == "NOT_READY") {
if(lst.size() != 2)
{
@@ -382,6 +383,16 @@
return;
}
+ if(lst[0] == "ROOM") {
+ if(lst.size() < 2)
+ {
+ qWarning("Net: Bad ROOM message");
+ return;
+ }
+ RawSendNet(QString("LIST"));
+ return;
+ }
+
if(lst[0] == "LOBBY:LEFT") {
if(lst.size() < 2)
{