From fe05382b2408bb1ba3d418957dffeb5d029b184b Mon Sep 17 00:00:00 2001 From: Mustafa Alperen Seki Date: Sun, 9 Jan 2022 18:00:42 +0300 Subject: [PATCH] Change "actor id" to "actor name" in some descs. --- OpenRA.Mods.Common/Traits/Cargo.cs | 2 +- OpenRA.Mods.Common/Traits/Carryall.cs | 2 +- OpenRA.Mods.Common/Traits/Passenger.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenRA.Mods.Common/Traits/Cargo.cs b/OpenRA.Mods.Common/Traits/Cargo.cs index 790a230754..cf2d7d46fd 100644 --- a/OpenRA.Mods.Common/Traits/Cargo.cs +++ b/OpenRA.Mods.Common/Traits/Cargo.cs @@ -79,7 +79,7 @@ namespace OpenRA.Mods.Common.Traits [ActorReference(dictionaryReference: LintDictionaryReference.Keys)] [Desc("Conditions to grant when specified actors are loaded inside the transport.", - "A dictionary of [actor id]: [condition].")] + "A dictionary of [actor name]: [condition].")] public readonly Dictionary PassengerConditions = new Dictionary(); [GrantedConditionReference] diff --git a/OpenRA.Mods.Common/Traits/Carryall.cs b/OpenRA.Mods.Common/Traits/Carryall.cs index 18116875f6..da7246e385 100644 --- a/OpenRA.Mods.Common/Traits/Carryall.cs +++ b/OpenRA.Mods.Common/Traits/Carryall.cs @@ -68,7 +68,7 @@ namespace OpenRA.Mods.Common.Traits [ActorReference(dictionaryReference: LintDictionaryReference.Keys)] [Desc("Conditions to grant when a specified actor is being carried.", - "A dictionary of [actor id]: [condition].")] + "A dictionary of [actor name]: [condition].")] public readonly Dictionary CarryableConditions = new Dictionary(); [VoiceReference] diff --git a/OpenRA.Mods.Common/Traits/Passenger.cs b/OpenRA.Mods.Common/Traits/Passenger.cs index f288c13ff6..743ded9f8c 100644 --- a/OpenRA.Mods.Common/Traits/Passenger.cs +++ b/OpenRA.Mods.Common/Traits/Passenger.cs @@ -34,7 +34,7 @@ namespace OpenRA.Mods.Common.Traits [ActorReference(dictionaryReference: LintDictionaryReference.Keys)] [Desc("Conditions to grant when this actor is loaded inside specified transport.", - "A dictionary of [actor id]: [condition].")] + "A dictionary of [actor name]: [condition].")] public readonly Dictionary CargoConditions = new Dictionary(); [GrantedConditionReference]