equal
deleted
inserted
replaced
479 |
479 |
480 if (slValue.size() == 6) |
480 if (slValue.size() == 6) |
481 { |
481 { |
482 if (param == "FULLMAPCONFIG") |
482 if (param == "FULLMAPCONFIG") |
483 { |
483 { |
484 QString seed = slValue[3]; |
484 QString seed = slValue[4]; |
485 |
485 |
486 pMapContainer->setAllMapParameters( |
486 pMapContainer->setAllMapParameters( |
487 slValue[0], |
487 slValue[1], |
488 (MapGenerator)slValue[1].toUInt(), |
488 (MapGenerator)slValue[2].toUInt(), |
489 slValue[2].toUInt(), |
489 slValue[3].toUInt(), |
490 seed, |
490 seed, |
491 slValue[4].toUInt(), |
491 slValue[5].toUInt(), |
492 slValue[5].toUInt() |
492 slValue[0].toUInt() |
493 ); |
493 ); |
494 return; |
494 return; |
495 } |
495 } |
496 } |
496 } |
497 |
497 |