hedgewars/uFLNetProtocol.pas
branchqmlfrontend
changeset 11436 f7fa429e42ab
parent 11434 23912c93935a
child 11437 6e641b5453f9
--- a/hedgewars/uFLNetProtocol.pas	Mon Nov 30 23:43:19 2015 +0300
+++ b/hedgewars/uFLNetProtocol.pas	Tue Dec 01 19:49:59 2015 +0300
@@ -73,15 +73,15 @@
 
     inc(fmcfgIndex);
     case fmcfgIndex of
-        1: if s.str1[0] <> '+' then netSetMap(s.str1);
-        2: netSetMapGen(strToInt(s.str1));
-        3: netSetMazeSize(strToInt(s.str1));
-        4: netSetTheme(s.str1);
-        5: netSetTemplate(strToInt(s.str1));
+        1: netSetFeatureSize(strToInt(s.str1));
+        2: if s.str1[0] <> '+' then netSetMap(s.str1);
+        3: netSetMapGen(strToInt(s.str1));
+        4: netSetMazeSize(strToInt(s.str1));
+        5: netSetSeed(s.str1);
         6: begin
-                netSetFeatureSize(strToInt(s.str1));
+                netSetTemplate(strToInt(s.str1));
                 updatePreviewIfNeeded;
-           end;
+            end;
     end;
 end;