Skip to content

Commit

Permalink
fix valid_alive_ct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
destoer committed Jan 28, 2024
1 parent f38ca9f commit b950f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lib/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static public bool is_valid_alive_t([NotNullWhen(true)] this CCSPlayerController

static public bool is_valid_alive_ct([NotNullWhen(true)] this CCSPlayerController? player)
{
return player.is_valid_alive() && player.is_t();
return player.is_valid_alive() && player.is_ct();
}

static public int slot_from_name(String name)
Expand Down

0 comments on commit b950f9d

Please sign in to comment.