PowerManager notification now optional.

This commit is contained in:
Andre Mohren
2018-07-22 13:52:28 +02:00
committed by abcdefg30
parent 90c2249317
commit 7057e32902
5 changed files with 5 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ namespace OpenRA.Mods.Common.Traits
public class PowerManagerInfo : ITraitInfo, Requires<DeveloperModeInfo>
{
public readonly int AdviceInterval = 250;
public readonly string SpeechNotification = "LowPower";
public readonly string SpeechNotification = null;
public object Create(ActorInitializer init) { return new PowerManager(init.Self, this); }
}