Fix a potential crash when cancelling capture

This commit is contained in:
Gustas
2025-03-15 08:11:14 +02:00
committed by Paul Chote
parent b565f0903a
commit b953f4a40d
2 changed files with 3 additions and 4 deletions

View File

@@ -152,7 +152,7 @@ namespace OpenRA.Mods.Common.Activities
void CancelCapture()
{
manager.CancelCapture(enterCaptureManager);
manager.CancelCapture(enterActor, enterCaptureManager);
}
}
}