QTfrontend/newnetclient.cpp
changeset 1305 453882eb4467
parent 1302 4290ba4a14ca
child 1307 ce26e16d18ab
--- a/QTfrontend/newnetclient.cpp	Sun Oct 05 23:22:14 2008 +0000
+++ b/QTfrontend/newnetclient.cpp	Sun Oct 05 23:27:53 2008 +0000
@@ -163,18 +163,21 @@
 
 void HWNewNet::ParseCmd(const QStringList & lst)
 {
-  qDebug() << "Server: " << lst;
+	qDebug() << "Server: " << lst;
+
+	if(!lst.size())
+	{
+		qWarning("Net client: Bad message");
+		return;
+	}
 
-  if(!lst.size())
-  {
-    qWarning("Net client: Bad message");
-    return;
-  }
-
-  if (lst[0] == "ERRONEUSNICKNAME") {
-    QMessageBox::information(0, 0, "Your net nickname is in use or cannot be used");
-    return;
-  }
+	if (lst[0] == "ERROR") {
+		if (lst.size() == 2)
+			QMessageBox::information(0, 0, lst[1]);
+		else
+			QMessageBox::information(0, 0, "Unknown error");
+		return;
+	}
 
   if (lst[0] == "CONNECTED") {
     m_game_connected=true;