Skip to content

Commit

Permalink
Removed testing for markers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OldUser101 committed Oct 13, 2024
1 parent 5ed7147 commit 0d1d3dd
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions robot/game_config/markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,7 @@ def by_id(id: int, team: typing.Union[TEAM, None] = None) -> BASE_MARKER: # team
elif id == 24 or id == 25 or id == 50:
owning_team = TEAM["T0"]
else:
print(f"Marker ID {id} is not defined.")
owning_team = TEAM["NONE"]

return TARGET_MARKER(id, owning_team)

## TESTING ##
for i in range(0, 200):
print(f"ID: {i}, {MARKER.by_id(i)}")
return TARGET_MARKER(id, owning_team)

0 comments on commit 0d1d3dd

Please sign in to comment.