diff --git a/OpenRA.Mods.Common/Activities/Enter.cs b/OpenRA.Mods.Common/Activities/Enter.cs index 976120c5f9..a768f8c936 100644 --- a/OpenRA.Mods.Common/Activities/Enter.cs +++ b/OpenRA.Mods.Common/Activities/Enter.cs @@ -53,9 +53,9 @@ namespace OpenRA.Mods.Common.Activities protected virtual bool TryStartEnter(Actor self, Actor targetActor) { return true; } /// - /// Called when the actor has entered the target actor - /// Return true if the action succeeded and the actor should be Killed/Disposed - /// (assuming the relevant EnterBehaviour), or false if the actor should exit unharmed + /// Called when the actor has entered the target actor. + /// Actor will be be Killed/Disposed or they will exit unharmed. + /// Depends on either the EnterBehaviour of the actor or the requirements of an overriding function. /// protected virtual void OnEnterComplete(Actor self, Actor targetActor) { }