diff --git a/TShockAPI/Configuration/TShockConfig.cs b/TShockAPI/Configuration/TShockConfig.cs index 77f092de..801a4c5f 100644 --- a/TShockAPI/Configuration/TShockConfig.cs +++ b/TShockAPI/Configuration/TShockConfig.cs @@ -45,7 +45,7 @@ namespace TShockAPI.Configuration /// Whether or not the server should output debug level messages related to system operation. [Description("Whether or not the server should output debug level messages related to system operation.")] - public bool DebugLogs = true; + public bool DebugLogs = false; /// Prevents users from being able to login before they finish connecting. [Description("Prevents users from being able to login before they finish connecting.")] @@ -74,11 +74,11 @@ namespace TShockAPI.Configuration /// The interval between backups, in minutes. Backups are stored in the tshock/backups folder. [Description("The interval between backups, in minutes. Backups are stored in the tshock/backups folder.")] - public int BackupInterval; + public int BackupInterval = 10; /// For how long backups are kept in minutes. [Description("For how long backups are kept in minutes.\neg. 2880 = 2 days.")] - public int BackupKeepFor = 60; + public int BackupKeepFor = 240; /// Whether or not to save the world if the server crashes from an unhandled exception. [Description("Whether or not to save the world if the server crashes from an unhandled exception.")] @@ -243,7 +243,7 @@ namespace TShockAPI.Configuration /// The number of seconds a player must wait before being respawned. Cannot be longer than normal value now. Use at your own risk. [Description("The number of seconds a player must wait before being respawned. Cannot be longer than normal value now. Use at your own risk.")] - public int RespawnSeconds = 5; + public int RespawnSeconds = 10; /// The number of seconds a player must wait before being respawned if there is a boss nearby. Cannot be longer than normal value now. Use at your own risk. [Description("The number of seconds a player must wait before being respawned if there is a boss nearby. Cannot be longer than normal value now. Use at your own risk.")]