From 5cb4fa05444773418715fa01f6e4e3fc792fb059 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Mon, 14 Apr 2025 17:13:09 +0300 Subject: [PATCH] Update PostMapInitTest.cs --- Content.IntegrationTests/Tests/PostMapInitTest.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 79e603af07..be8e1d9a97 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -273,7 +273,8 @@ namespace Content.IntegrationTests.Tests private void CP14CheckOnlyForkFiltered(ResPath map, YamlNode node, IPrototypeManager protoManager) { - if (DoNotMapWhitelist.Contains(map.ToString())) + //ignore all vanilla maps + if (!map.ToString().Contains("CP14")) return; var yamlEntities = node["entities"];