From 4b0578d1d5dbef0d7c1850ad8f59026acdf9e9c0 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Fri, 20 May 2022 11:24:02 +1200 Subject: [PATCH] Include nospawn in tests (#8293) --- Content.IntegrationTests/Tests/EntityTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 1267151905..5798d39c22 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -68,7 +68,7 @@ namespace Content.IntegrationTests.Tests //Generate list of non-abstract prototypes to test foreach (var prototype in prototypeMan.EnumeratePrototypes()) { - if (prototype.NoSpawn || prototype.Abstract) + if (prototype.Abstract) { continue; }