From 1261fd1b076fa83ed05debf10abbc463e0b86bbf Mon Sep 17 00:00:00 2001 From: penev92 Date: Sun, 22 Feb 2015 22:17:24 +0200 Subject: [PATCH] Increase NotificationInterval to 30 seconds --- OpenRA.Mods.Common/Traits/Player/EnemyWatcher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Player/EnemyWatcher.cs b/OpenRA.Mods.Common/Traits/Player/EnemyWatcher.cs index e703837a9e..1488237786 100644 --- a/OpenRA.Mods.Common/Traits/Player/EnemyWatcher.cs +++ b/OpenRA.Mods.Common/Traits/Player/EnemyWatcher.cs @@ -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); } }