Update the description of EnemyWatcher and AnnounceOnSeen

This commit is contained in:
abcdefg30
2019-01-07 13:08:31 +01:00
committed by reaperrr
parent db7414e822
commit 7c2f8ef918
2 changed files with 3 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Traits
{
[Desc("Tracks neutral and enemy actors' visibility and notifies the player.",
"Attach this to the player actor.")]
"Attach this to the player actor. The actors to track need the 'AnnounceOnSeen' trait.")]
class EnemyWatcherInfo : ITraitInfo
{
[Desc("Interval in ticks between scanning for enemies.")]

View File

@@ -15,7 +15,8 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Traits.Sound
{
[Desc("Players will be notified when this actor becomes visible to them.")]
[Desc("Players will be notified when this actor becomes visible to them.",
"Requires the 'EnemyWatcher' trait on the player actor.")]
public class AnnounceOnSeenInfo : ITraitInfo
{
[Desc("Should there be a radar ping on enemies' radar at the actor's location when they see him")]