Fix documentation about GeneratesShroud to CreatesShroud rename.

This commit is contained in:
Matthias Mailänder
2021-05-07 23:17:14 +02:00
committed by Paul Chote
parent 92b6401360
commit 52a4b5acd7
5 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ namespace OpenRA.Mods.Common.Traits
[Desc("Relationships the watching player needs to see the shroud removed.")]
public readonly PlayerRelationship ValidRelationships = PlayerRelationship.Ally;
[Desc("Can this actor reveal shroud generated by the GeneratesShroud trait?")]
[Desc("Can this actor reveal shroud generated by the CreatesShroud trait?")]
public readonly bool RevealGeneratedShroud = true;
public override object Create(ActorInitializer init) { return new RevealsShroud(init.Self, this); }