Fix gamemap name casing (#11474)
This commit is contained in:
@@ -42,7 +42,7 @@ public static class PoolManager
|
|||||||
(CCVars.DatabaseSynchronous.Name, "true", false),
|
(CCVars.DatabaseSynchronous.Name, "true", false),
|
||||||
(CCVars.DatabaseSqliteDelay.Name, "0", false),
|
(CCVars.DatabaseSqliteDelay.Name, "0", false),
|
||||||
(CCVars.HolidaysEnabled.Name, "false", false),
|
(CCVars.HolidaysEnabled.Name, "false", false),
|
||||||
(CCVars.GameMap.Name, "empty", true),
|
(CCVars.GameMap.Name, "Empty", true),
|
||||||
(CCVars.GameMapForced.Name, "true", true),
|
(CCVars.GameMapForced.Name, "true", true),
|
||||||
(CCVars.AdminLogsQueueSendDelay.Name, "0", true),
|
(CCVars.AdminLogsQueueSendDelay.Name, "0", true),
|
||||||
(CCVars.NetPVS.Name, "false", true),
|
(CCVars.NetPVS.Name, "false", true),
|
||||||
|
|||||||
@@ -91,9 +91,9 @@ namespace Content.IntegrationTests.Tests
|
|||||||
var mapNames = new List<string>();
|
var mapNames = new List<string>();
|
||||||
var naughty = new HashSet<string>()
|
var naughty = new HashSet<string>()
|
||||||
{
|
{
|
||||||
"empty",
|
"Empty",
|
||||||
"infiltrator",
|
"Infiltrator",
|
||||||
"pirate",
|
"Pirate",
|
||||||
};
|
};
|
||||||
|
|
||||||
foreach (var map in maps)
|
foreach (var map in maps)
|
||||||
|
|||||||
@@ -36,5 +36,5 @@ public sealed class StationDataComponent : Component
|
|||||||
/// Emergency shuttle map path for this station.
|
/// Emergency shuttle map path for this station.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[ViewVariables(VVAccess.ReadWrite), Access(typeof(ShuttleSystem), Other = AccessPermissions.ReadWriteExecute)]
|
[ViewVariables(VVAccess.ReadWrite), Access(typeof(ShuttleSystem), Other = AccessPermissions.ReadWriteExecute)]
|
||||||
public ResourcePath EmergencyShuttlePath = new("/Maps/Shuttles/emergency_shuttle.yml");
|
public ResourcePath EmergencyShuttlePath = new("/Maps/Shuttles/emergency.yml");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: bagelstation
|
id: Bagel
|
||||||
mapName: 'Bagel Station'
|
mapName: 'Bagel Station'
|
||||||
mapPath: /Maps/bagel.yml
|
mapPath: /Maps/bagel.yml
|
||||||
minPlayers: 35
|
minPlayers: 35
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: boxstation
|
id: Box
|
||||||
mapName: 'Box Station'
|
mapName: 'Box Station'
|
||||||
mapPath: /Maps/box.yml
|
mapPath: /Maps/box.yml
|
||||||
minPlayers: 35
|
minPlayers: 35
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: centcomm
|
id: CentComm
|
||||||
mapName: 'Central Command'
|
mapName: 'Central Command'
|
||||||
mapPath: /Maps/centcomm.yml
|
mapPath: /Maps/centcomm.yml
|
||||||
minPlayers: 10
|
minPlayers: 10
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: infiltrator
|
id: Infiltrator
|
||||||
mapName: 'Syndicate Infiltrator'
|
mapName: 'Syndicate Infiltrator'
|
||||||
mapPath: /Maps/infiltrator.yml
|
mapPath: /Maps/infiltrator.yml
|
||||||
minPlayers: 0
|
minPlayers: 0
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: lighthouse
|
id: Lighthouse
|
||||||
mapName: 'Lighthouse'
|
mapName: 'Lighthouse'
|
||||||
mapPath: /Maps/lighthouse.yml
|
mapPath: /Maps/lighthouse.yml
|
||||||
minPlayers: 35
|
minPlayers: 35
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: marathonstation
|
id: Marathon
|
||||||
mapName: 'Marathon Station'
|
mapName: 'Marathon Station'
|
||||||
mapPath: /Maps/marathon.yml
|
mapPath: /Maps/marathon.yml
|
||||||
minPlayers: 35
|
minPlayers: 35
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: metastation
|
id: Meta
|
||||||
mapName: 'Meta Station'
|
mapName: 'Meta Station'
|
||||||
mapPath: /Maps/meta.yml
|
mapPath: /Maps/meta.yml
|
||||||
minPlayers: 35
|
minPlayers: 35
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: omega
|
id: Omega
|
||||||
mapName: 'Omega'
|
mapName: 'Omega'
|
||||||
mapPath: /Maps/omega.yml
|
mapPath: /Maps/omega.yml
|
||||||
minPlayers: 0
|
minPlayers: 0
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: packedstation
|
id: Packed
|
||||||
mapName: 'Packedstation'
|
mapName: 'Packedstation'
|
||||||
mapPath: /Maps/packedstation.yml
|
mapPath: /Maps/packed.yml
|
||||||
minPlayers: 0
|
minPlayers: 0
|
||||||
maxPlayers: 35
|
maxPlayers: 35
|
||||||
votable: true
|
votable: true
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: pirate
|
id: Pirate
|
||||||
mapName: 'Pirate Ship'
|
mapName: 'Pirate Ship'
|
||||||
mapPath: /Maps/pirate.yml
|
mapPath: /Maps/pirate.yml
|
||||||
minPlayers: 0
|
minPlayers: 0
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: saltern
|
id: Saltern
|
||||||
mapName: 'Saltern'
|
mapName: 'Saltern'
|
||||||
mapPath: /Maps/saltern.yml
|
mapPath: /Maps/saltern.yml
|
||||||
minPlayers: 0
|
minPlayers: 0
|
||||||
|
|||||||
@@ -6,37 +6,37 @@
|
|||||||
# "Small"-class maps - Max size square: 7x7, indicated size: 3.5
|
# "Small"-class maps - Max size square: 7x7, indicated size: 3.5
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: small1
|
id: Small1
|
||||||
name: "Small / Engineering Storage 1"
|
name: "Small / Engineering Storage 1"
|
||||||
mapPath: /Maps/Salvage/small-1.yml
|
mapPath: /Maps/Salvage/small-1.yml
|
||||||
bounds: "-2.5,-3.5,3.5,3.5"
|
bounds: "-2.5,-3.5,3.5,3.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: small2
|
id: Small2
|
||||||
name: "Small / Gaming Nook 1"
|
name: "Small / Gaming Nook 1"
|
||||||
mapPath: /Maps/Salvage/small-2.yml
|
mapPath: /Maps/Salvage/small-2.yml
|
||||||
bounds: "-3.5,-3.5,3.5,3.5"
|
bounds: "-3.5,-3.5,3.5,3.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: small-ship-1
|
id: Small-ship-1
|
||||||
name: "Small / Ship 1 (Pill)"
|
name: "Small / Ship 1 (Pill)"
|
||||||
mapPath: /Maps/Salvage/small-ship-1.yml
|
mapPath: /Maps/Salvage/small-ship-1.yml
|
||||||
bounds: "-1.5,-0.5,2.5,1.5"
|
bounds: "-1.5,-0.5,2.5,1.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: small3
|
id: Small3
|
||||||
name: "Small / Laundromat 1"
|
name: "Small / Laundromat 1"
|
||||||
mapPath: /Maps/Salvage/small-3.yml
|
mapPath: /Maps/Salvage/small-3.yml
|
||||||
bounds: "-3.5,-3.5,2.5,3.5"
|
bounds: "-3.5,-3.5,2.5,3.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: smallAISurveyDrone
|
id: SmallAISurveyDrone
|
||||||
name: "Small / AI Survey Drone"
|
name: "Small / AI Survey Drone"
|
||||||
mapPath: /Maps/Salvage/small-ai-survey-drone.yml
|
mapPath: /Maps/Salvage/small-ai-survey-drone.yml
|
||||||
bounds: "-3.5,-3.5,3.5,3.5"
|
bounds: "-3.5,-3.5,3.5,3.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: small4
|
id: Small4
|
||||||
name: "Small / Bar Salvage"
|
name: "Small / Bar Salvage"
|
||||||
mapPath: /Maps/Salvage/small-4.yml
|
mapPath: /Maps/Salvage/small-4.yml
|
||||||
bounds: "-3.5,-3.5,3.5,3.5"
|
bounds: "-3.5,-3.5,3.5,3.5"
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
# Small - Asteroids
|
# Small - Asteroids
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: smallA1
|
id: SmallA1
|
||||||
name: "Small / Asteroid 1 Plasmafire"
|
name: "Small / Asteroid 1 Plasmafire"
|
||||||
mapPath: /Maps/Salvage/small-a-1.yml
|
mapPath: /Maps/Salvage/small-a-1.yml
|
||||||
bounds: "-3.5,-3.5,3.5,3.5"
|
bounds: "-3.5,-3.5,3.5,3.5"
|
||||||
@@ -52,61 +52,61 @@
|
|||||||
# "Medium"-class maps - Max size square: 15x15, indicated size: 7.5
|
# "Medium"-class maps - Max size square: 15x15, indicated size: 7.5
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: medium1
|
id: Medium1
|
||||||
name: "Medium / Plasma-Trapped Cache 1"
|
name: "Medium / Plasma-Trapped Cache 1"
|
||||||
mapPath: /Maps/Salvage/medium-1.yml
|
mapPath: /Maps/Salvage/medium-1.yml
|
||||||
bounds: "-7.5,-7.5,7.5,7.5"
|
bounds: "-7.5,-7.5,7.5,7.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: mediumvault1
|
id: MediumVault1
|
||||||
name: "Medium / Vault 1"
|
name: "Medium / Vault 1"
|
||||||
mapPath: /Maps/Salvage/medium-vault-1.yml
|
mapPath: /Maps/Salvage/medium-vault-1.yml
|
||||||
bounds: "-7.5,-7.5,7.5,7.5"
|
bounds: "-7.5,-7.5,7.5,7.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: mediumOrchestra
|
id: MediumOrchestra
|
||||||
name: "Medium / Silent Orchestra"
|
name: "Medium / Silent Orchestra"
|
||||||
mapPath: /Maps/Salvage/medium-silent-orchestra.yml
|
mapPath: /Maps/Salvage/medium-silent-orchestra.yml
|
||||||
bounds: "-7.5,-7.5,7.5,7.5"
|
bounds: "-7.5,-7.5,7.5,7.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: mediumLibraryWreck
|
id: MediumLibraryWreck
|
||||||
name: "Medium / Abandoned Library"
|
name: "Medium / Abandoned Library"
|
||||||
mapPath: /Maps/Salvage/medium-library.yml
|
mapPath: /Maps/Salvage/medium-library.yml
|
||||||
bounds: "-8.5,-8.5,6.5,7.5"
|
bounds: "-8.5,-8.5,6.5,7.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: mediumCargoWreck
|
id: MediumCargoWreck
|
||||||
name: "Medium / Cargo Department Wreck"
|
name: "Medium / Cargo Department Wreck"
|
||||||
mapPath: /Maps/Salvage/cargo-1.yml
|
mapPath: /Maps/Salvage/cargo-1.yml
|
||||||
bounds: "-5.5,-5.5,5.5,9.5"
|
bounds: "-5.5,-5.5,5.5,9.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: mediumPirateWreck
|
id: MediumPirateWreck
|
||||||
name: "Medium / Pirate Barge Fragment"
|
name: "Medium / Pirate Barge Fragment"
|
||||||
mapPath: /Maps/Salvage/medium-pirate.yml
|
mapPath: /Maps/Salvage/medium-pirate.yml
|
||||||
bounds: "-3.5,-9.5,6.5,7.5"
|
bounds: "-3.5,-9.5,6.5,7.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: tickColony
|
id: TickColony
|
||||||
name: "Space Tick colony"
|
name: "Space Tick colony"
|
||||||
mapPath: /Maps/Salvage/tick-colony.yml
|
mapPath: /Maps/Salvage/tick-colony.yml
|
||||||
bounds: "-6,-7,5,7"
|
bounds: "-6,-7,5,7"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: cargoDock
|
id: CargoDock
|
||||||
name: "Asteroid Cargo Dock"
|
name: "Asteroid Cargo Dock"
|
||||||
mapPath: /Maps/Salvage/medium-dock.yml
|
mapPath: /Maps/Salvage/medium-dock.yml
|
||||||
bounds: "-7,-6,4,8"
|
bounds: "-7,-6,4,8"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: spaceWaffleHome
|
id: SpaceWaffleHome
|
||||||
name: "Waffle Home"
|
name: "Waffle Home"
|
||||||
mapPath: /Maps/Salvage/wh-salvage.yml
|
mapPath: /Maps/Salvage/wh-salvage.yml
|
||||||
bounds: "-13,-12,14,11"
|
bounds: "-13,-12,14,11"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: mediumShuttleWreck
|
id: MediumShuttleWreck
|
||||||
name: "Medium / Ruined Emergency Shuttle"
|
name: "Medium / Ruined Emergency Shuttle"
|
||||||
mapPath: /Maps/Salvage/medium-ruined-emergency-shuttle.yml
|
mapPath: /Maps/Salvage/medium-ruined-emergency-shuttle.yml
|
||||||
bounds: "-8.5,-8.5,8.5,8.5"
|
bounds: "-8.5,-8.5,8.5,8.5"
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
bounds: "-5.5,-8.5,5.5,8.5"
|
bounds: "-5.5,-8.5,5.5,8.5"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: mediumCrashedShuttle
|
id: MediumCrashedShuttle
|
||||||
name: "Crashed Shuttle"
|
name: "Crashed Shuttle"
|
||||||
mapPath: /Maps/Salvage/medium-crashed-shuttle.yml
|
mapPath: /Maps/Salvage/medium-crashed-shuttle.yml
|
||||||
bounds: "-7,-8,5,9"
|
bounds: "-7,-8,5,9"
|
||||||
@@ -126,19 +126,19 @@
|
|||||||
# """Large""" maps
|
# """Large""" maps
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: stationstation
|
id: StationStation
|
||||||
name: "StationStation"
|
name: "StationStation"
|
||||||
mapPath: /Maps/Salvage/stationstation.yml
|
mapPath: /Maps/Salvage/stationstation.yml
|
||||||
bounds: "-17,-15,35,29"
|
bounds: "-17,-15,35,29"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: asteroidBase
|
id: AsteroidBase
|
||||||
name: "Asteroid Base"
|
name: "Asteroid Base"
|
||||||
mapPath: /Maps/Salvage/asteroid-base.yml
|
mapPath: /Maps/Salvage/asteroid-base.yml
|
||||||
bounds: "-12,-13,15,11"
|
bounds: "-12,-13,15,11"
|
||||||
|
|
||||||
- type: salvageMap
|
- type: salvageMap
|
||||||
id: ruinCargoBase
|
id: RuinCargoBase
|
||||||
name: "Ruined Cargo Storage"
|
name: "Ruined Cargo Storage"
|
||||||
mapPath: /Maps/Salvage/ruin-cargo-salvage.yml
|
mapPath: /Maps/Salvage/ruin-cargo-salvage.yml
|
||||||
bounds: "-15,-13,22,14"
|
bounds: "-15,-13,22,14"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
- type: gameMap
|
- type: gameMap
|
||||||
id: empty
|
id: Empty
|
||||||
mapName: Empty
|
mapName: Empty
|
||||||
mapPath: /Maps/Test/empty.yml
|
mapPath: /Maps/Test/empty.yml
|
||||||
minPlayers: 0
|
minPlayers: 0
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Cargo
|
# Cargo
|
||||||
- type: cargoShuttle
|
- type: cargoShuttle
|
||||||
id: CargoShuttle
|
id: CargoShuttle
|
||||||
path: /Maps/cargo_shuttle.yml
|
path: /Maps/Shuttles/cargo.yml
|
||||||
|
|||||||
Reference in New Issue
Block a user