From 8018fa0aec7d5158e33d9b91cdeb08a30f48abd8 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Thu, 1 Jul 2010 19:04:07 +1200 Subject: [PATCH] please don't have insane options as the hardcoded default. that's what your personal settings file is for. --- OpenRA.Game/GameRules/UserSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/GameRules/UserSettings.cs b/OpenRA.Game/GameRules/UserSettings.cs index 386ac6478c..43dc65893b 100644 --- a/OpenRA.Game/GameRules/UserSettings.cs +++ b/OpenRA.Game/GameRules/UserSettings.cs @@ -23,7 +23,7 @@ namespace OpenRA.GameRules public class UserSettings { // Debug settings - public bool UnitDebug = true; + public bool UnitDebug = false; public bool PathDebug = true; public bool PerfDebug = true; public bool IndexDebug = false;