Browse Source

Fix wrong default in `DefaultIt()` for `MapList`

pull/2/head
Anton Tarasenko 2 years ago
parent
commit
6a21ceb2bc
  1. 39
      sources/MapList/MapList.uc

39
sources/MapList/MapList.uc

@ -58,11 +58,40 @@ protected function FromData(HashTable source) {
}
protected function DefaultIt() {
map[0] = "KF-BioticsLab";
map[1] = "KF-Farm";
map[2] = "KF-Manor";
map[3] = "KF-Offices";
map[4] = "KF-WestLondon";
map.length = 0;
map[0] = "KF-AbusementPark";
map[1] = "KF-Aperture";
map[2] = "KF-Bedlam";
map[3] = "KF-Biohazard";
map[4] = "KF-BioticsLab";
map[5] = "KF-Clandestine";
map[6] = "KF-Crash";
map[7] = "KF-Departed";
map[8] = "KF-EvilSantasLair";
map[9] = "KF-Farm";
map[10] = "KF-FilthsCross";
map[11] = "KF-Forgotten";
map[12] = "KF-Foundry";
map[13] = "KF-FrightYard";
map[14] = "KF-Hell";
map[15] = "KF-Hellride";
map[16] = "KF-HillbillyHorror";
map[17] = "KF-Hospitalhorrors";
map[18] = "KF-Icebreaker";
map[19] = "KF-IceCave";
map[20] = "KF-Manor";
map[21] = "KF-MoonBase";
map[22] = "KF-MountainPass";
map[23] = "KF-Offices";
map[24] = "KF-SirensBelch";
map[25] = "KF-Steamland";
map[26] = "KF-Stronghold";
map[27] = "KF-Suburbia";
map[28] = "KF-ThrillsChills";
map[29] = "KF-Transit";
map[30] = "KF-Waterworks";
map[31] = "KF-WestLondon";
map[32] = "KF-Wyre";
}
defaultproperties {

Loading…
Cancel
Save