Fix HeliReturnToBase not exposing an host actor parameter

This commit is contained in:
abcdefg30
2016-10-03 14:56:52 +02:00
parent 5acbe91221
commit 55143ced87
3 changed files with 8 additions and 4 deletions

View File

@@ -623,7 +623,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));
}
}