mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-03-11 01:13:47 +00:00
AutoStart
This commit is contained in:
parent
37c03e3473
commit
94c10ba010
@ -6,7 +6,8 @@ namespace QSB.Utility;
|
|||||||
public class DebugSettings
|
public class DebugSettings
|
||||||
{
|
{
|
||||||
[JsonProperty("useKcpTransport")]
|
[JsonProperty("useKcpTransport")]
|
||||||
public bool UseKcpTransport;
|
private bool _useKcpTransport;
|
||||||
|
public bool UseKcpTransport => _useKcpTransport || AutoStart;
|
||||||
|
|
||||||
[JsonProperty("dumpWorldObjects")]
|
[JsonProperty("dumpWorldObjects")]
|
||||||
public bool DumpWorldObjects;
|
public bool DumpWorldObjects;
|
||||||
@ -20,6 +21,9 @@ public class DebugSettings
|
|||||||
[JsonProperty("avoidTimeSync")]
|
[JsonProperty("avoidTimeSync")]
|
||||||
public bool AvoidTimeSync;
|
public bool AvoidTimeSync;
|
||||||
|
|
||||||
|
[JsonProperty("autoStart")]
|
||||||
|
public bool AutoStart;
|
||||||
|
|
||||||
[JsonProperty("debugMode")]
|
[JsonProperty("debugMode")]
|
||||||
public bool DebugMode;
|
public bool DebugMode;
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
"instanceIdInLogs": false,
|
"instanceIdInLogs": false,
|
||||||
"hookDebugLogs": false,
|
"hookDebugLogs": false,
|
||||||
"avoidTimeSync": false,
|
"avoidTimeSync": false,
|
||||||
|
"autoStart": false,
|
||||||
"debugMode": false,
|
"debugMode": false,
|
||||||
"drawGui": false,
|
"drawGui": false,
|
||||||
"drawLines": false,
|
"drawLines": false,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user