Skip to content

Commit 140e30a

Browse files
committed
Fix version info not being printed
1 parent 17e35a3 commit 140e30a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rlbot/managers/match.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def ensure_server_started(self, print_version_info: bool = True):
116116
"""
117117
Ensures that RLBotServer is running.
118118
"""
119-
if not print_version_info:
119+
if print_version_info:
120120
version.print_current_release_notes()
121121

122122
self.rlbot_server_process, self.rlbot_server_port = gateway.find_server_process(

0 commit comments

Comments
 (0)