QTfrontend/game.cpp
changeset 172 5294ada3910b
parent 157 8e3e11bb0a5f
child 174 0b2c5b22f644
--- a/QTfrontend/game.cpp	Tue Sep 26 20:02:32 2006 +0000
+++ b/QTfrontend/game.cpp	Tue Sep 26 20:24:32 2006 +0000
@@ -335,14 +335,14 @@
 {
 	gameType = gtLocal;
 	if (TeamCount < 2) return;
-	seed = QUuid::createUuid().toString();
+	seed = gamecfg->getCurrentSeed();//QUuid::createUuid().toString();
 	Start();
 }
 
 void HWGame::StartQuick()
 {
 	gameType = gtQLocal;
-	seed = QUuid::createUuid().toString();
+	seed = gamecfg->getCurrentSeed();//QUuid::createUuid().toString();
 	Start();
 }