diff -r 28fb618d99c4 -r f7fa429e42ab hedgewars/uFLNetProtocol.pas --- 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;