From da02620c4e32e6a73430adb0ade0634cbf2c44ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 20 Aug 2017 15:11:11 +0200 Subject: [PATCH] Add field description from current Settings wiki entry. --- OpenRA.Game/Settings.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/OpenRA.Game/Settings.cs b/OpenRA.Game/Settings.cs index eda7168aa7..a3f6f4514a 100644 --- a/OpenRA.Game/Settings.cs +++ b/OpenRA.Game/Settings.cs @@ -86,10 +86,16 @@ namespace OpenRA public bool LuaDebug = false; public bool PerfText = false; public bool PerfGraph = false; + + [Desc("Amount of time required for triggering perf.log output.")] public float LongTickThresholdMs = 1; + public bool SanityCheckUnsyncedCode = false; public int Samples = 25; + + [Desc("Show incompatible games in server browser.")] public bool IgnoreVersionMismatch = false; + public bool StrictActivityChecking = false; public bool SendSystemInformation = true; public int SystemInformationVersionPrompt = 0; @@ -148,6 +154,7 @@ namespace OpenRA public class PlayerSettings { + [Desc("Sets the player nickname for in-game and IRC chat.")] public string Name = "Newbie"; public HSLColor Color = new HSLColor(75, 255, 180); public string LastServer = "localhost:1234";