Skip to content

Commit 4e2aa8b

Browse files
committed
Update to new RLBot v5 spec
1 parent 9449d43 commit 4e2aa8b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "A high performance Python interface for communicating with RLBot
88
dynamic = ["version"]
99
requires-python = ">= 3.11"
1010
dependencies = [
11-
"rlbot_flatbuffers~=0.7.0",
11+
"rlbot_flatbuffers~=0.8.1",
1212
"psutil==6.*",
1313
]
1414
readme = "README.md"

rlbot/managers/match.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def shut_down(self, ensure_shutdown=True):
187187
try:
188188
self.rlbot_interface.stop_match(shutdown_server=True)
189189
except BrokenPipeError:
190-
match gateway.find_server_process(self.main_executable_name):
190+
match gateway.find_server_process(self.main_executable_name)[0]:
191191
case psutil.Process() as proc:
192192
self.logger.warning(
193193
"Can't communicate with RLBotServer, ensuring shutdown."

rlbot/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
BOLD_SEQ = "\033[1m"
77

88

9-
def _get_color(color):
9+
def _get_color(color: int) -> str:
1010
return COLOR_SEQ % (30 + color)
1111

1212

0 commit comments

Comments
 (0)