Skip to content

Commit ae5fb74

Browse files
authored
Fix error
1 parent eff7d64 commit ae5fb74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/boost_pad_tracker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def initialize_boosts(self, game_info: FieldInfo):
3737
]
3838

3939
def update_boost_status(self, packet: GameTickPacket):
40-
for i, packet_pad in enumerate(packet.boost_pad_states):
40+
for i, packet_pad in enumerate(packet.boost_pads):
4141
our_pad = self.boost_pads[i]
4242
our_pad.is_active = packet_pad.is_active
4343
our_pad.timer = packet_pad.timer

0 commit comments

Comments
 (0)