Small Change

This commit is contained in:
Vishal 2024-03-24 16:23:09 +05:30 committed by GitHub
parent 16cbddcf90
commit d33a8372ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -474,7 +474,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]):
points.append(
((start_pos - player_pos).length(), start_pos)
)
# Hmm.. we need to sorting vectors too?
# Hmm.. we need to sort vectors too?
points.sort(key=lambda x: x[0])
return points[-1][1]
return None