Skip to content

Commit

Permalink
added six ball start pose
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverW10 committed Mar 29, 2022
1 parent 25abf3a commit 862ba58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autonomous/autonomous.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def move(self, tm: float) -> None:
if self.current_movement.type is WaypointType.SHOOT:
self.next_state("firing")
elif self.current_movement.type is WaypointType.PICKUP_TO_TWO:
self.next_state("pickup")
self.next_state("pickup_to_two")
else:
self.move_next_waypoint(tm)
if self.current_state == "finished":
Expand Down Expand Up @@ -382,7 +382,7 @@ class SixBall(AutoBase):
MODE_NAME = "Flex O'clock"

def setup(self) -> None:
super().setup()
self.start_pose = right_mid_start
self.movements = [
Movement(
WaypointType.SHOOT,
Expand Down

0 comments on commit 862ba58

Please sign in to comment.