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
8
8
dynamic = [" version" ]
9
9
requires-python = " >= 3.11"
10
10
dependencies = [
11
- " rlbot_flatbuffers~=0.14.4 " ,
11
+ " rlbot_flatbuffers~=0.14.5 " ,
12
12
" psutil==7.*" ,
13
13
]
14
14
readme = " README.md"
Original file line number Diff line number Diff line change @@ -96,15 +96,19 @@ def wait_for_first_packet(self):
96
96
sleep (0.1 )
97
97
98
98
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 ,
100
103
):
101
104
"""
102
105
Starts a match using the given match settings or a path to a match settings toml file.
103
106
Connection is automatically established if missing. Call `connect` if you
104
107
want this process to receive match communication or ball prediction messages.
105
108
"""
106
109
107
- self .ensure_server_started ()
110
+ if ensure_server_started :
111
+ self .ensure_server_started ()
108
112
109
113
if not self .rlbot_interface .is_connected :
110
114
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