File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ description = "A high performance Python interface for communicating with RLBot
88dynamic = [" version" ]
99requires-python = " >= 3.11"
1010dependencies = [
11- " rlbot_flatbuffers~=0.14.3 " ,
11+ " rlbot_flatbuffers~=0.14.4 " ,
1212 " psutil==7.*" ,
1313]
1414readme = " README.md"
Original file line number Diff line number Diff line change @@ -342,9 +342,9 @@ def handle_incoming_message(
342342 handler (match_comm )
343343 case SocketDataType .BALL_PREDICTION :
344344 if len (self .ball_prediction_handlers ) > 0 :
345- ball_prediction = self ._ball_pred .unpack_with (incoming_message .data )
345+ self ._ball_pred .unpack_with (incoming_message .data )
346346 for handler in self .ball_prediction_handlers :
347- handler (ball_prediction )
347+ handler (self . _ball_pred )
348348 case SocketDataType .CONTROLLABLE_TEAM_INFO :
349349 if len (self .controllable_team_info_handlers ) > 0 :
350350 player_mappings = flat .ControllableTeamInfo .unpack (
Original file line number Diff line number Diff line change 1- __version__ = "2.0.0-beta.32 "
1+ __version__ = "2.0.0-beta.33 "
Original file line number Diff line number Diff line change 66
77
88class Fashion (Bot ):
9+ standard_loadout : flat .PlayerLoadout
10+
911 def initialize (self ):
10- self .set_loadout (load_player_loadout ("../necto/loadout.toml" , self .team ))
12+ self .standard_loadout = load_player_loadout ("../necto/loadout.toml" , self .team )
13+ self .set_loadout (self .standard_loadout )
1114
1215 def get_output (self , packet : flat .GamePacket ) -> flat .ControllerState :
1316 return flat .ControllerState ()
You can’t perform that action at this time.
0 commit comments