Change "actor id" to "actor name" in some descs.

This commit is contained in:
Mustafa Alperen Seki
2022-01-09 18:00:42 +03:00
committed by Matthias Mailänder
parent 3c60a515f7
commit fe05382b24
3 changed files with 3 additions and 3 deletions

View File

@@ -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<string, string> PassengerConditions = new Dictionary<string, string>();
[GrantedConditionReference]

View File

@@ -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<string, string> CarryableConditions = new Dictionary<string, string>();
[VoiceReference]

View File

@@ -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<string, string> CargoConditions = new Dictionary<string, string>();
[GrantedConditionReference]