Skip to content

Commit

Permalink
nice to have and version
Browse files Browse the repository at this point in the history
  • Loading branch information
LordFetznschaedl committed Apr 10, 2024
1 parent ed646ed commit 960186c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CS2Retake/CS2Retake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ namespace CS2Retake
public class CS2Retake : BasePlugin, IPluginConfig<CS2RetakeConfig>
{
public override string ModuleName => "CS2Retake";
public override string ModuleVersion => "2.0.1";
public override string ModuleVersion => "2.1.0";
public override string ModuleAuthor => "LordFetznschaedl";
public override string ModuleDescription => "Highly configurable and modular implementation Retake for CS2";

private readonly List<string> _gunsCommandAlias = new List<string>(){"guns", "gans", "gun", "g", "weapon", "waepon", "waffen", "menu", "allocator", "select"};
private readonly List<string> _gunsCommandAlias = new List<string>(){"guns", "gans", "gun", "g", "gns", "weapon", "waepon", "waffen", "menu", "allocator", "select"};

public CS2RetakeConfig Config { get; set; } = new CS2RetakeConfig();
private bool _scrambleAfterWarmupDone = false;
Expand Down
2 changes: 1 addition & 1 deletion CS2Retake/CS2Retake.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<Version>2.0.0</Version>
<Version>2.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion CS2Retake/Managers/WeaponManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void AssignWeapon(CCSPlayerController player)
break;
}


player.ExecuteClientCommand($"slot3; slot2; slot1");
}

public void RemoveWeapons(CCSPlayerController player)
Expand Down

0 comments on commit 960186c

Please sign in to comment.