1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 02:53:29 +08:00

Infinite logistic bots/drones/vessels in Architect Mode

This commit is contained in:
2023-10-08 23:05:25 +08:00
parent 9d601e1cbc
commit a3b95073b8

View File

@@ -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;
}
}
}