File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
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.4 " ,
11+ " rlbot_flatbuffers~=0.14.5 " ,
1212 " psutil==7.*" ,
1313]
1414readme = " README.md"
Original file line number Diff line number Diff line change @@ -96,15 +96,19 @@ def wait_for_first_packet(self):
9696 sleep (0.1 )
9797
9898 def start_match (
99- self , config : Path | flat .MatchConfiguration , wait_for_start : bool = True
99+ self ,
100+ config : Path | flat .MatchConfiguration ,
101+ wait_for_start : bool = True ,
102+ ensure_server_started : bool = True ,
100103 ):
101104 """
102105 Starts a match using the given match settings or a path to a match settings toml file.
103106 Connection is automatically established if missing. Call `connect` if you
104107 want this process to receive match communication or ball prediction messages.
105108 """
106109
107- self .ensure_server_started ()
110+ if ensure_server_started :
111+ self .ensure_server_started ()
108112
109113 if not self .rlbot_interface .is_connected :
110114 self .connect (
Original file line number Diff line number Diff line change 1- __version__ = "2.0.0-beta.35 "
1+ __version__ = "2.0.0-beta.36 "
You can’t perform that action at this time.
0 commit comments