heal beam
All checks were successful
CI / checks (push) Successful in 59s

This commit is contained in:
Robin Appelman 2025-06-28 23:03:20 +02:00
commit d33a8df45d
5 changed files with 99 additions and 17 deletions

View file

@ -66,7 +66,7 @@ function filterPlayers(players: PlayerState[], team: number): PlayerState[] {
return filtered;
}
function medics(players: PlayerState[]): PlayerState[] {
export function medics(players: PlayerState[]): PlayerState[] {
return players.filter(player => player.playerClass === Class.Medic);
}