Merge pull request #12162 from abcdefg30/heliHost

Fix HeliReturnToBase not exposing an host actor parameter
This commit is contained in:
reaperrr
2016-10-22 15:58:06 +02:00
committed by GitHub
3 changed files with 11 additions and 7 deletions

View File

@@ -635,7 +635,7 @@ namespace OpenRA.Mods.Common.Traits
if (IsPlane)
self.QueueActivity(new ReturnToBase(self, Info.AbortOnResupply, null, false));
else
self.QueueActivity(new HeliReturnToBase(self, Info.AbortOnResupply, false));
self.QueueActivity(new HeliReturnToBase(self, Info.AbortOnResupply, null, false));
}
}