unhardcode and self-document
This commit is contained in:
@@ -17,6 +17,8 @@ namespace OpenRA.Mods.RA.Power
|
|||||||
public class PowerManagerInfo : ITraitInfo, Requires<DeveloperModeInfo>
|
public class PowerManagerInfo : ITraitInfo, Requires<DeveloperModeInfo>
|
||||||
{
|
{
|
||||||
public readonly int AdviceInterval = 250;
|
public readonly int AdviceInterval = 250;
|
||||||
|
public readonly string SpeechNotification = "LowPower";
|
||||||
|
|
||||||
public object Create(ActorInitializer init) { return new PowerManager(init.self, this); }
|
public object Create(ActorInitializer init) { return new PowerManager(init.self, this); }
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -118,7 +120,7 @@ namespace OpenRA.Mods.RA.Power
|
|||||||
if (--nextPowerAdviceTime <= 0)
|
if (--nextPowerAdviceTime <= 0)
|
||||||
{
|
{
|
||||||
if (lowPower)
|
if (lowPower)
|
||||||
Sound.PlayNotification(self.World.Map.Rules, self.Owner, "Speech", "LowPower", self.Owner.Country.Race);
|
Sound.PlayNotification(self.World.Map.Rules, self.Owner, "Speech", info.SpeechNotification, self.Owner.Country.Race);
|
||||||
nextPowerAdviceTime = info.AdviceInterval;
|
nextPowerAdviceTime = info.AdviceInterval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user