diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9ee81b57..f63e4543 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 fetch-tags: true @@ -51,7 +51,7 @@ jobs: contents: read pull-requests: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup .NET uses: actions/setup-dotnet@v5 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31fd4382..8d8e1808 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: MAX_CHANGELOG_CHARS: "50000" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 fetch-tags: true diff --git a/TTT/CS2/Configs/ShopItems/CS2CamoConfig.cs b/TTT/CS2/Configs/ShopItems/CS2CamoConfig.cs index a58819d8..5d275d74 100644 --- a/TTT/CS2/Configs/ShopItems/CS2CamoConfig.cs +++ b/TTT/CS2/Configs/ShopItems/CS2CamoConfig.cs @@ -10,7 +10,7 @@ namespace TTT.CS2.Configs.ShopItems; public class CS2CamoConfig : IStorage, IPluginModule { public static readonly FakeConVar CV_PRICE = new( - "css_ttt_shop_camo_price", "Price of the Camo item", 75, + "css_ttt_shop_camo_price", "Price of the Camo item", 65, ConVarFlags.FCVAR_NONE, new RangeValidator(0, 10000)); public static readonly FakeConVar CV_CAMO_VISIBILITY = new( diff --git a/TTT/CS2/Items/PoisonShots/PoisonShotsListener.cs b/TTT/CS2/Items/PoisonShots/PoisonShotsListener.cs index 1e0bfe6c..36ac94f0 100644 --- a/TTT/CS2/Items/PoisonShots/PoisonShotsListener.cs +++ b/TTT/CS2/Items/PoisonShots/PoisonShotsListener.cs @@ -78,7 +78,7 @@ public void OnDamage(PlayerDamagedEvent ev) { if (ev.Attacker == null) return; if (!poisonShots.TryGetValue(ev.Attacker, out var shot) || shot <= 0) return; - if (ev.Weapon == null || !Tag.GUNS.Contains(ev.Weapon)) return; + if (ev.Weapon == null || !Tag.PISTOLS.Contains(ev.Weapon)) return; Messenger.Message(ev.Attacker, Locale[PoisonShotMsgs.SHOP_ITEM_POISON_HIT(ev.Player)]); addPoisonEffect(ev.Player, ev.Attacker); diff --git a/TTT/ShopAPI/Configs/ArmorConfig.cs b/TTT/ShopAPI/Configs/ArmorConfig.cs index 84207218..cdfc27a5 100644 --- a/TTT/ShopAPI/Configs/ArmorConfig.cs +++ b/TTT/ShopAPI/Configs/ArmorConfig.cs @@ -1,7 +1,7 @@ namespace ShopAPI.Configs; public record ArmorConfig : ShopItemConfig { - public override int Price { get; init; } = 60; + public override int Price { get; init; } = 75; public int Armor { get; init; } = 100; public bool Helmet { get; init; } = true; } \ No newline at end of file diff --git a/TTT/ShopAPI/Configs/CamoConfig.cs b/TTT/ShopAPI/Configs/CamoConfig.cs index c74351da..336ae71f 100644 --- a/TTT/ShopAPI/Configs/CamoConfig.cs +++ b/TTT/ShopAPI/Configs/CamoConfig.cs @@ -1,6 +1,6 @@ namespace ShopAPI.Configs; public record CamoConfig : ShopItemConfig { - public override int Price { get; init; } = 75; + public override int Price { get; init; } = 65; public float CamoVisibility { get; init; } = 0.6f; } \ No newline at end of file diff --git a/TTT/SpecialRoundAPI/Configs/SilentRoundConfig.cs b/TTT/SpecialRoundAPI/Configs/SilentRoundConfig.cs index 737038dd..6c943f4f 100644 --- a/TTT/SpecialRoundAPI/Configs/SilentRoundConfig.cs +++ b/TTT/SpecialRoundAPI/Configs/SilentRoundConfig.cs @@ -1,5 +1,5 @@ namespace SpecialRoundAPI.Configs; public record SilentRoundConfig : SpecialRoundConfig { - public override float Weight { get; init; } = 0.5f; + public override float Weight { get; init; } = 0.2f; } \ No newline at end of file