Skip to content

Commit

Permalink
Change "actor id" to "actor name" in some descs.
Browse files Browse the repository at this point in the history
  • Loading branch information
MustaphaTR authored and Mailaender committed Jan 9, 2022
1 parent 3c60a51 commit fe05382
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OpenRA.Mods.Common/Traits/Cargo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class CargoInfo : TraitInfo, Requires<IOccupySpaceInfo>

[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]
Expand Down
2 changes: 1 addition & 1 deletion OpenRA.Mods.Common/Traits/Carryall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class CarryallInfo : TraitInfo, Requires<BodyOrientationInfo>, Requires<A

[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]
Expand Down
2 changes: 1 addition & 1 deletion OpenRA.Mods.Common/Traits/Passenger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class PassengerInfo : TraitInfo, IObservesVariablesInfo

[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]
Expand Down

0 comments on commit fe05382

Please sign in to comment.