Increase NotificationInterval to 30 seconds

This commit is contained in:
penev92
2015-02-22 22:17:24 +02:00
parent a3065ad90c
commit 1261fd1b07

View File

@@ -23,7 +23,7 @@ namespace OpenRA.Mods.Common.Traits
public readonly int ScanInterval = 25;
[Desc("Minimal interval in ticks between notifications.")]
public readonly int NotificationInterval = 200;
public readonly int NotificationInterval = 750;
public object Create(ActorInitializer init) { return new EnemyWatcher(init.Self, this); }
}