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