Rename comments and documentation.

This commit is contained in:
Paul Chote
2016-12-23 15:17:02 +00:00
parent 152ae13cea
commit d0270ab866
18 changed files with 36 additions and 37 deletions

View File

@@ -65,7 +65,7 @@ namespace OpenRA.Mods.Common.Lint
emitError("Actor type `{0}` consumes conditions that are not granted: {1}".F(actorInfo.Key, ungranted.JoinWith(", ")));
if ((consumed.Any() || granted.Any()) && actorInfo.Value.TraitInfoOrDefault<ConditionManagerInfo>() == null)
emitError("Actor type `{0}` defines conditions but does not include an UpgradeManager".F(actorInfo.Key));
emitError("Actor type `{0}` defines conditions but does not include a ConditionManager".F(actorInfo.Key));
}
}
}