From 93ee46ba52f91cb6505deb5776108f4d83f91062 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 11 Jul 2013 19:54:02 +1200 Subject: [PATCH] Default radar bin to enabled. Fixes observers and replays. --- OpenRA.Mods.RA/Widgets/RadarWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/Widgets/RadarWidget.cs b/OpenRA.Mods.RA/Widgets/RadarWidget.cs index 24e79cc9a7..b119d4c92b 100755 --- a/OpenRA.Mods.RA/Widgets/RadarWidget.cs +++ b/OpenRA.Mods.RA/Widgets/RadarWidget.cs @@ -22,7 +22,7 @@ namespace OpenRA.Mods.RA.Widgets public int AnimationLength = 5; public string RadarOnlineSound = null; public string RadarOfflineSound = null; - public Func IsEnabled = () => false; + public Func IsEnabled = () => true; public Action AfterOpen = () => {}; public Action AfterClose = () => {};