diff --git a/OpenRA.Game/Activities/Activity.cs b/OpenRA.Game/Activities/Activity.cs index 5df407b7ff..4debd90555 100644 --- a/OpenRA.Game/Activities/Activity.cs +++ b/OpenRA.Game/Activities/Activity.cs @@ -135,6 +135,7 @@ namespace OpenRA.Activities /// Call this method from any place that's called during a tick, such as the Tick() method itself or /// the Before(First|Last)Run() methods. The origin activity will be marked in the output. /// + /// The actor performing this activity. /// Activity from which to start traversing, and which to mark. If null, mark the calling activity, and start traversal from the top. /// Initial level of indentation. protected void PrintActivityTree(Actor self, Activity origin = null, int level = 0) diff --git a/OpenRA.Mods.Common/Traits/Conditions/ConditionManager.cs b/OpenRA.Mods.Common/Traits/Conditions/ConditionManager.cs index 633f749aab..4c6cf84b2d 100644 --- a/OpenRA.Mods.Common/Traits/Conditions/ConditionManager.cs +++ b/OpenRA.Mods.Common/Traits/Conditions/ConditionManager.cs @@ -114,9 +114,12 @@ namespace OpenRA.Mods.Common.Traits return token; } - /// Revokes a previously granted condition. - /// The invalid token ID. + /// + /// Revokes a previously granted condition. + /// + /// The actor to which this trait is attached. /// The token ID returned by GrantCondition. + /// The invalid token ID. public int RevokeCondition(Actor self, int token) { string condition; diff --git a/OpenRA.Mods.Common/Traits/World/DomainIndex.cs b/OpenRA.Mods.Common/Traits/World/DomainIndex.cs index 3c876c2980..dbde34a6b6 100644 --- a/OpenRA.Mods.Common/Traits/World/DomainIndex.cs +++ b/OpenRA.Mods.Common/Traits/World/DomainIndex.cs @@ -51,7 +51,7 @@ namespace OpenRA.Mods.Common.Traits return domainIndexes[movementClass].IsPassable(p1, p2); } - /// Regenerate the domain index for a group of cells + /// Regenerate the domain index for a group of cells. public void UpdateCells(World world, IEnumerable cells) { var dirty = cells.ToHashSet(); diff --git a/OpenRA.Mods.Common/Traits/World/ResourceClaimLayer.cs b/OpenRA.Mods.Common/Traits/World/ResourceClaimLayer.cs index 335a005675..a2915e4eaa 100644 --- a/OpenRA.Mods.Common/Traits/World/ResourceClaimLayer.cs +++ b/OpenRA.Mods.Common/Traits/World/ResourceClaimLayer.cs @@ -59,7 +59,6 @@ namespace OpenRA.Mods.Common.Traits /// /// Release the last resource claim made by this actor. /// - /// public void RemoveClaim(Actor claimer) { CPos lastClaim; diff --git a/OpenRA.ruleset b/OpenRA.ruleset index 6f23e54a93..93fd24a1ed 100644 --- a/OpenRA.ruleset +++ b/OpenRA.ruleset @@ -42,5 +42,12 @@ + + + + + + + \ No newline at end of file