From 2ff4a769550dcf42e047885ca766a008b4c7e34a Mon Sep 17 00:00:00 2001 From: James Dunne Date: Wed, 27 Jun 2012 22:02:29 -0500 Subject: [PATCH] Fixed zombie aircraft flying around after being told to fall to earth. --- OpenRA.Mods.RA/Air/FlyAttack.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Air/FlyAttack.cs b/OpenRA.Mods.RA/Air/FlyAttack.cs index c4bb4aa2bd..43cc94fa9c 100755 --- a/OpenRA.Mods.RA/Air/FlyAttack.cs +++ b/OpenRA.Mods.RA/Air/FlyAttack.cs @@ -50,9 +50,10 @@ namespace OpenRA.Mods.RA.Air { if( inner != null ) inner.Cancel( self ); - - base.Cancel( self ); } + + // NextActivity must always be set to null: + base.Cancel(self); } } }