Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Content.IntegrationTests/Tests/PostMapInitTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@ public sealed class PostMapInitTest
private static readonly string[] DoNotMapWhitelist =
{
"/Maps/centcomm.yml",
"/Maps/Shuttles/AdminSpawn/**" // admin gaming
"/Maps/Shuttles/AdminSpawn/**", // admin gaming
"/Maps/Floof/centcomm.yml", // floofstation - our version of centcomm
"/Maps/Floof/Shuttles/CentralCommand/**", // floofstation - admin shuttles
"/Maps/Floof/Shuttles/CentralCommand/CCShips/**", // floofstation - admin shuttles
"/Maps/Floof/Shuttles/Event/Syndicate/Stations", // floofstation - admin shuttles
"/Maps/Floof/Shuttles/Event/**" // floofstation - admin shuttles
};

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public sealed class MappingCategoryTest
{
private const string MapsPath = "/Maps";
// dev map doesn't matter and don't want to change it
private readonly List<string> _ignoredMapsPath = ["/Maps/Test/", "/Maps/Shuttles/AdminSpawn"];
private readonly List<string> _ignoredMapsPath = ["/Maps/Test/", "/Maps/Shuttles/AdminSpawn", "/Maps/Floof/centcomm.yml", "/Maps/Floof/Shuttles/CentralCommand/", "/Maps/Floof/Shuttles/Event/"]; //Floofstation - add centcomm and admin shuttles to ignoredmappaths

[Test]
public async Task NonGameMapsLoadableTest()
Expand Down
Loading
Loading