Skip to content

Commit c8b0909

Browse files
committed
Remove warning in connect
1 parent be333d4 commit c8b0909

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

rlbot/interface.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,6 @@ def connect(
182182
- wants_ball_predictions: Whether ball prediction messages should be sent to this process.
183183
- close_after_match: Whether RLBot should close this connection between matches, specifically upon
184184
`StartMatch` and `StopMatch` messages, since RLBot does not actually detect the ending of matches.
185-
186-
NOTE: Bad things happen if the message buffer fills up. Ensure `handle_incoming_messages` is called
187-
frequently to prevent this. See `run` for handling messages continuously.
188185
"""
189186
assert not self.is_connected, "Connection has already been established"
190187

rlbot/managers/match.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,6 @@ def connect(
208208
- wants_ball_predictions: Whether ball prediction messages should be sent to this process.
209209
- close_after_match: Whether RLBot should close this connection between matches, specifically upon
210210
`StartMatch` and `StopMatch` messages, since RLBot does not actually detect the ending of matches.
211-
212-
NOTE: Bad things happen if the message buffer fills up. Ensure `handle_incoming_messages` is called
213-
frequently to prevent this. See start a match immediately or cal `rlbot_interface.run()` directly
214-
for handling messages continuously.
215211
"""
216212
self.rlbot_interface.connect(
217213
wants_match_communications=wants_match_communications,

0 commit comments

Comments
 (0)