diff --git a/QSB/Utility/DebugSettings.cs b/QSB/Utility/DebugSettings.cs index ab054fd8..1707e907 100644 --- a/QSB/Utility/DebugSettings.cs +++ b/QSB/Utility/DebugSettings.cs @@ -13,6 +13,9 @@ namespace QSB.Utility [JsonProperty("dumpWorldObjects")] public bool DumpWorldObjects; + [JsonProperty("playerIdInLogs")] + public bool PlayerIdInLogs; + [JsonProperty("debugMode")] public bool DebugMode; @@ -43,9 +46,5 @@ namespace QSB.Utility [JsonProperty("greySkybox")] private bool _greySkybox; public bool GreySkybox => DebugMode && _greySkybox; - - [JsonProperty("playerIdInLogs")] - private bool _playerIdInLogs; - public bool PlayerIdInLogs => DebugMode && _playerIdInLogs; } } diff --git a/QSB/debugsettings.json.example b/QSB/debugsettings.json.example index 785a2afc..3fc943cb 100644 --- a/QSB/debugsettings.json.example +++ b/QSB/debugsettings.json.example @@ -2,6 +2,7 @@ "useKcpTransport": false, "overrideAppId": -1, "dumpWorldObjects": false, + "playerIdInLogs": true "debugMode": false, "drawGui": false, "drawLines": false, @@ -10,5 +11,4 @@ "avoidTimeSync": false, "skipTitleScreen": false, "greySkybox": false, - "playerIdInLogs": true } \ No newline at end of file