File tree 4 files changed +8
-5
lines changed
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
8
8
dynamic = [" version" ]
9
9
requires-python = " >= 3.11"
10
10
dependencies = [
11
- " rlbot_flatbuffers~=0.14.3 " ,
11
+ " rlbot_flatbuffers~=0.14.4 " ,
12
12
" psutil==7.*" ,
13
13
]
14
14
readme = " README.md"
Original file line number Diff line number Diff line change @@ -342,9 +342,9 @@ def handle_incoming_message(
342
342
handler (match_comm )
343
343
case SocketDataType .BALL_PREDICTION :
344
344
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 )
346
346
for handler in self .ball_prediction_handlers :
347
- handler (ball_prediction )
347
+ handler (self . _ball_pred )
348
348
case SocketDataType .CONTROLLABLE_TEAM_INFO :
349
349
if len (self .controllable_team_info_handlers ) > 0 :
350
350
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 6
6
7
7
8
8
class Fashion (Bot ):
9
+ standard_loadout : flat .PlayerLoadout
10
+
9
11
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 )
11
14
12
15
def get_output (self , packet : flat .GamePacket ) -> flat .ControllerState :
13
16
return flat .ControllerState ()
You can’t perform that action at this time.
0 commit comments