Skip to content

Commit 56e1835

Browse files
committed
Fix path issue with PythonAgent name
1 parent 34d2db6 commit 56e1835

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
looks_config = ./appearance.cfg
44

55
# Path to python file. Can use relative path from here.
6-
python_file = ./CSharpPythonAgent.py
6+
python_file = ./PythonAgent.py
77

88
# Name of the bot in-game
99
name = CSharpBot

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ your bot will work right in the next tournament!
5151
## Overview of how the C# bot interacts with Python
5252

5353
The C# bot executable is a server that listens for Python clients.
54-
When `PythonAgent/CSharpPythonAgent.py` is started by the RLBot framework, it connects to the C# bot server and tells it its info.
54+
When `PythonAgent/PythonAgent.py` is started by the RLBot framework, it connects to the C# bot server and tells it its info.
5555
Then, the C# bot server controls the bot through the `RLBot_Core_Interface` DLL.

rlbot.cfg

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ game_map = Mannfield
1616
[Participant Configuration]
1717
# Put the name of your bot config file here. Only num_participants config files will be read!
1818
# Everything needs a config, even players and default bots. We still set loadouts and names from config!
19-
participant_config_0 = CSharpPythonAgent/CSharpPythonAgent.cfg
20-
participant_config_1 = CSharpPythonAgent/CSharpPythonAgent.cfg
21-
participant_config_2 = CSharpPythonAgent/CSharpPythonAgent.cfg
22-
participant_config_3 = CSharpPythonAgent/CSharpPythonAgent.cfg
23-
participant_config_4 = CSharpPythonAgent/CSharpPythonAgent.cfg
24-
participant_config_5 = CSharpPythonAgent/CSharpPythonAgent.cfg
25-
participant_config_6 = CSharpPythonAgent/CSharpPythonAgent.cfg
26-
participant_config_7 = CSharpPythonAgent/CSharpPythonAgent.cfg
27-
participant_config_8 = CSharpPythonAgent/CSharpPythonAgent.cfg
28-
participant_config_9 = CSharpPythonAgent/CSharpPythonAgent.cfg
19+
participant_config_0 = PythonAgent/PythonAgent.cfg
20+
participant_config_1 = PythonAgent/PythonAgent.cfg
21+
participant_config_2 = PythonAgent/PythonAgent.cfg
22+
participant_config_3 = PythonAgent/PythonAgent.cfg
23+
participant_config_4 = PythonAgent/PythonAgent.cfg
24+
participant_config_5 = PythonAgent/PythonAgent.cfg
25+
participant_config_6 = PythonAgent/PythonAgent.cfg
26+
participant_config_7 = PythonAgent/PythonAgent.cfg
27+
participant_config_8 = PythonAgent/PythonAgent.cfg
28+
participant_config_9 = PythonAgent/PythonAgent.cfg
2929

3030
# team 0 shoots on positive goal, team 1 shoots on negative goal
3131
participant_team_0 = 0

0 commit comments

Comments
 (0)