From ee72a7840b69e6134f899143f0e51ef72fed1d20 Mon Sep 17 00:00:00 2001 From: Spooky Date: Sat, 16 Feb 2019 01:30:24 -0700 Subject: [PATCH] Change default timeperiod from 30 -> 60 --- SCPSwap/SCPSwap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCPSwap/SCPSwap.cs b/SCPSwap/SCPSwap.cs index a5eb444..a87c952 100644 --- a/SCPSwap/SCPSwap.cs +++ b/SCPSwap/SCPSwap.cs @@ -46,7 +46,7 @@ public override void Register() { // Register config this.AddConfig(new ConfigSetting("scpswap_enable", true, SettingType.BOOL, true, "Whether SCPSwap should be enabled on server start.")); - this.AddConfig(new ConfigSetting("scpswap_timeperiod", 30, SettingType.NUMERIC, true, "Amount of time in seconds after round start that player can swap SCPs.")); + this.AddConfig(new ConfigSetting("scpswap_timeperiod", 60, SettingType.NUMERIC, true, "Amount of time in seconds after round start that player can swap SCPs.")); this.AddConfig(new ConfigSetting("scpswap_minhealth", 98, SettingType.NUMERIC, true, "Minimum health percentage required to be able to swap SCPs.")); this.AddConfig(new ConfigSetting("scpswap_preservehealth", true, SettingType.BOOL, true, "Whether to preserve health percentage on a swap.")); this.AddConfig(new ConfigSetting("scpswap_maxswaps", 1, SettingType.NUMERIC, true, "How many swaps can be done per player, per round."));