Skip to content

Commit

Permalink
fix csgo kill layer throwing error after respawn
Browse files Browse the repository at this point in the history
  • Loading branch information
Aytackydln committed Jul 11, 2022
1 parent 2c756ef commit 49fac77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ csgostate.Previously.Player.State.Health is > -1 and < 100 &&

if (csgostate.Player.State.RoundKills == 0 || roundClearPhase || respawned)
{
for (var i = 0; i < roundKills.Capacity; i++)
for (var i = 0; i < roundKills.Count; i++)
{
roundKills[i] = RoundKillType.None;
}
Expand Down

0 comments on commit 49fac77

Please sign in to comment.