From a3b95073b88265c7b5fea41cc2f4d6bdb8aea701 Mon Sep 17 00:00:00 2001 From: Soar Qin Date: Sun, 8 Oct 2023 23:05:25 +0800 Subject: [PATCH] Infinite logistic bots/drones/vessels in Architect Mode --- CheatEnabler/FactoryPatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CheatEnabler/FactoryPatch.cs b/CheatEnabler/FactoryPatch.cs index 7627187..4db8cc0 100644 --- a/CheatEnabler/FactoryPatch.cs +++ b/CheatEnabler/FactoryPatch.cs @@ -393,7 +393,7 @@ public static class FactoryPatch _canBuildItems = new bool[12000]; foreach (var ip in LDB.items.dataArray) { - if (ip.CanBuild && ip.ID < 12000) _canBuildItems[ip.ID] = true; + if ((ip.Type == EItemType.Logistics || ip.CanBuild) && ip.ID < 12000) _canBuildItems[ip.ID] = true; } } }