Default radar bin to enabled. Fixes observers and replays.

This commit is contained in:
Paul Chote
2013-07-11 19:54:02 +12:00
parent 6a37808dae
commit 93ee46ba52

View File

@@ -22,7 +22,7 @@ namespace OpenRA.Mods.RA.Widgets
public int AnimationLength = 5;
public string RadarOnlineSound = null;
public string RadarOfflineSound = null;
public Func<bool> IsEnabled = () => false;
public Func<bool> IsEnabled = () => true;
public Action AfterOpen = () => {};
public Action AfterClose = () => {};