From 3b29b272ad8d11deef4e04f0ccc345c6174350e4 Mon Sep 17 00:00:00 2001 From: Kalle Date: Tue, 12 Nov 2024 18:46:00 +0100 Subject: [PATCH] bump version to 1.7.5 --- src/Parachute.cs | 3 +-- src/Version.cs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Parachute.cs b/src/Parachute.cs index 2687a01..a202cfc 100644 --- a/src/Parachute.cs +++ b/src/Parachute.cs @@ -2,7 +2,6 @@ using CounterStrikeSharp.API; using CounterStrikeSharp.API.Core; using System.Text.Json.Serialization; -using System.Drawing; namespace Parachute { @@ -11,7 +10,7 @@ public class PluginConfig : BasePluginConfig [JsonPropertyName("Enabled")] public bool Enabled { get; set; } = true; [JsonPropertyName("FallSpeed")] public float FallSpeed { get; set; } = 32; [JsonPropertyName("SideMovementModifier")] public float SideMovementModifier { get; set; } = 1.0075f; - [JsonPropertyName("MaxVelocity")] public float MaxVelocity { get; set; } = 500f; + [JsonPropertyName("MaxVelocity")] public float MaxVelocity { get; set; } = 400f; [JsonPropertyName("RoundStartDelay")] public int RoundStartDelay { get; set; } = 10; [JsonPropertyName("DisableWhenCarryingHostage")] public bool DisableWhenCarryingHostage { get; set; } = false; [JsonPropertyName("DisableForBots")] public bool DisableForBots { get; set; } = false; diff --git a/src/Version.cs b/src/Version.cs index f5b1158..2390817 100644 --- a/src/Version.cs +++ b/src/Version.cs @@ -2,5 +2,5 @@ namespace Parachute; public partial class Parachute { - public override string ModuleVersion => "1.7.4"; + public override string ModuleVersion => "1.7.5"; } \ No newline at end of file