fixed #2286 - chrono kills passengers on return too

This commit is contained in:
Chris Forbes
2012-07-01 13:31:04 +12:00
parent f5c606266d
commit 109546d20f
4 changed files with 26 additions and 19 deletions

View File

@@ -82,7 +82,7 @@ namespace OpenRA.Mods.RA
{
var mobile = self.Trait<Mobile>();
self.QueueActivity(mobile.ScriptedMove(left));
self.QueueActivity(new Teleport(right));
self.QueueActivity(new Teleport(null, right, false));
self.QueueActivity(new CallFunc(() => LoopTrack(self,left,right)));
}
}