Skip to content

Commit 36bb2c6

Browse files
authored
Renaming python_example to 'bot' so people won't feel compelled to change it. (#28)
1 parent 1f142c1 commit 36bb2c6

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

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 = python_example/python_example.cfg
20-
participant_config_1 = python_example/python_example.cfg
21-
participant_config_2 = python_example/python_example.cfg
22-
participant_config_3 = python_example/python_example.cfg
23-
participant_config_4 = python_example/python_example.cfg
24-
participant_config_5 = python_example/python_example.cfg
25-
participant_config_6 = python_example/python_example.cfg
26-
participant_config_7 = python_example/python_example.cfg
27-
participant_config_8 = python_example/python_example.cfg
28-
participant_config_9 = python_example/python_example.cfg
19+
participant_config_0 = src/bot.cfg
20+
participant_config_1 = src/bot.cfg
21+
participant_config_2 = src/bot.cfg
22+
participant_config_3 = src/bot.cfg
23+
participant_config_4 = src/bot.cfg
24+
participant_config_5 = src/bot.cfg
25+
participant_config_6 = src/bot.cfg
26+
participant_config_7 = src/bot.cfg
27+
participant_config_8 = src/bot.cfg
28+
participant_config_9 = src/bot.cfg
2929

3030
# team 0 shoots on positive goal, team 1 shoots on negative goal
3131
participant_team_0 = 0
Lines changed: 2 additions & 2 deletions
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 = ./python_example.py
6+
python_file = ./bot.py
77

88
# Name of the bot in-game
99
name = PythonExampleBot
@@ -18,7 +18,7 @@ description = This is a multi-line description
1818
of the official python example bot
1919

2020
# Fun fact about the bot
21-
fun_fact =
21+
fun_fact =
2222

2323
# Link to github repository
2424
github = https://github.com/RLBot/RLBotPythonExample

training/hello_world_training.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def make_match_config_with_my_bot() -> MatchConfig:
2020
match_config = make_empty_match_config()
2121
match_config.player_configs = [
2222
PlayerConfig.bot_config(
23-
Path(__file__).absolute().parent.parent / 'python_example' / 'python_example.cfg',
23+
Path(__file__).absolute().parent.parent / 'src' / 'bot.cfg',
2424
Team.BLUE
2525
),
2626
]

0 commit comments

Comments
 (0)