Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion TTT/CS2/Configs/ShopItems/CS2CamoConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace TTT.CS2.Configs.ShopItems;

public class CS2CamoConfig : IStorage<CamoConfig>, IPluginModule {
public static readonly FakeConVar<int> 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<int>(0, 10000));

public static readonly FakeConVar<float> CV_CAMO_VISIBILITY = new(
Expand Down
2 changes: 1 addition & 1 deletion TTT/CS2/Items/PoisonShots/PoisonShotsListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion TTT/ShopAPI/Configs/ArmorConfig.cs
Original file line number Diff line number Diff line change
@@ -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;
}
2 changes: 1 addition & 1 deletion TTT/ShopAPI/Configs/CamoConfig.cs
Original file line number Diff line number Diff line change
@@ -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;
}
2 changes: 1 addition & 1 deletion TTT/SpecialRoundAPI/Configs/SilentRoundConfig.cs
Original file line number Diff line number Diff line change
@@ -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;
}
Loading