From 6da8a729aba83f4cae991ca6dadb74e9cb354988 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 00:37:14 +0000 Subject: [PATCH 1/6] build(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnet.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 From e47e85651c9825fc260aa879a24080f5f6d66c45 Mon Sep 17 00:00:00 2001 From: MSWS Date: Mon, 1 Dec 2025 17:52:22 -0800 Subject: [PATCH 2/6] fix: Poison shots working with non-pistols (resolves #194) --- TTT/CS2/Items/PoisonShots/PoisonShotsListener.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); From 6e4d9576365f808ad8bfcdfb35352cbe4d7fbd5b Mon Sep 17 00:00:00 2001 From: MSWS Date: Mon, 1 Dec 2025 19:23:04 -0800 Subject: [PATCH 3/6] update: Decrease silent round probability --- TTT/SpecialRoundAPI/Configs/SilentRoundConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 43f550779ac3a40f1c0b69a89667e18969c8eef7 Mon Sep 17 00:00:00 2001 From: MSWS Date: Mon, 1 Dec 2025 19:25:52 -0800 Subject: [PATCH 4/6] update: Decrease camo cost 75 -> 65 --- TTT/CS2/Configs/ShopItems/CS2CamoConfig.cs | 2 +- TTT/ShopAPI/Configs/CamoConfig.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/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 From 0d816facba0ec14a3184694c55b72555a35d2d21 Mon Sep 17 00:00:00 2001 From: MSWS Date: Mon, 1 Dec 2025 19:26:34 -0800 Subject: [PATCH 5/6] update: Increase armor cost 60 -> 75 --- TTT/ShopAPI/Configs/ArmorConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From a66a4cb03c97cddf3059ced5aa1839860146104c Mon Sep 17 00:00:00 2001 From: MSWS Date: Mon, 1 Dec 2025 19:29:36 -0800 Subject: [PATCH 6/6] +semver:patch