Tidy up Activity.Cancel(), make Tick abstract
This commit is contained in:
@@ -90,11 +90,12 @@ namespace OpenRA.Mods.RA
|
||||
return this;
|
||||
}
|
||||
|
||||
protected override bool OnCancel( Actor self )
|
||||
public override void Cancel( Actor self )
|
||||
{
|
||||
if( inner != null )
|
||||
inner.Cancel( self );
|
||||
return base.OnCancel( self );
|
||||
|
||||
base.Cancel( self );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user