From fa1ca981ac3fb38b8ef9e85aca373964bf8331da Mon Sep 17 00:00:00 2001 From: teinarss Date: Wed, 18 Sep 2019 18:27:48 +0200 Subject: [PATCH] Production should set SubCellInit --- OpenRA.Mods.Common/Traits/Production.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Mods.Common/Traits/Production.cs b/OpenRA.Mods.Common/Traits/Production.cs index 8a67915bc5..50eccf4e75 100644 --- a/OpenRA.Mods.Common/Traits/Production.cs +++ b/OpenRA.Mods.Common/Traits/Production.cs @@ -73,6 +73,7 @@ namespace OpenRA.Mods.Common.Traits td.Add(new LocationInit(exit)); td.Add(new CenterPositionInit(spawn)); td.Add(new FacingInit(initialFacing)); + td.Add(new SubCellInit(SubCell.Any)); if (exitinfo != null) td.Add(new MoveIntoWorldDelayInit(exitinfo.ExitDelay)); }