Skip to content

Commit

Permalink
bump version to 1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
derkalle4 committed Nov 12, 2024
1 parent e2b7e24 commit 3b29b27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/Parachute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using CounterStrikeSharp.API;
using CounterStrikeSharp.API.Core;
using System.Text.Json.Serialization;
using System.Drawing;

namespace Parachute
{
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ namespace Parachute;

public partial class Parachute
{
public override string ModuleVersion => "1.7.4";
public override string ModuleVersion => "1.7.5";
}

0 comments on commit 3b29b27

Please sign in to comment.