diff --git a/OpenRA.Game/Traits/Activities/UndeployMcv.cs b/OpenRA.Game/Traits/Activities/UndeployMcv.cs index 6e4255007f..8d04d89e25 100644 --- a/OpenRA.Game/Traits/Activities/UndeployMcv.cs +++ b/OpenRA.Game/Traits/Activities/UndeployMcv.cs @@ -56,10 +56,6 @@ namespace OpenRA.Traits.Activities return this; } - public void Cancel(Actor self) - { - // Cancel can't happen between this being moved to the head of the list, and it being Ticked. - throw new InvalidOperationException("UndeployMcvAction: Cancel() should never occur."); - } + public void Cancel(Actor self) {} } }