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]