Skip to content

Commit e99dde7

Browse files
committed
Latest spec
1 parent 6fe228a commit e99dde7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

RLBotCS/Conversion/FlatToCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ static class FlatToCommand
1111
private static string MapGameMode(GameMode gameMode) =>
1212
gameMode switch
1313
{
14-
GameMode.Soccer => "?game=TAGame.GameInfo_Soccar_TA",
14+
GameMode.Soccar => "?game=TAGame.GameInfo_Soccar_TA",
1515
GameMode.Hoops => "?game=TAGame.GameInfo_Basketball_TA",
1616
GameMode.Dropshot => "?game=TAGame.GameInfo_Breakout_TA",
17-
GameMode.Hockey => "?game=TAGame.GameInfo_Hockey_TA",
17+
GameMode.Snowday => "?game=TAGame.GameInfo_Hockey_TA",
1818
GameMode.Rumble => "?game=TAGame.GameInfo_Items_TA",
1919
GameMode.Heatseeker => "?game=TAGame.GameInfo_GodBall_TA",
2020
GameMode.Gridiron => "?game=TAGame.GameInfo_Football_TA",

RLBotCS/ManagerTools/ConfigParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ public MatchConfigurationT LoadMatchConfig(string path)
815815
matchConfig.GameMode = GetEnum(
816816
matchTable,
817817
Fields.MatchGameMode,
818-
GameMode.Soccer
818+
GameMode.Soccar
819819
);
820820
matchConfig.GameMapUpk = GetValue(matchTable, Fields.MatchMapUpk, "Stadium_P");
821821
matchConfig.SkipReplays = GetValue(matchTable, Fields.MatchSkipReplays, false);

RLBotCSTests/TestTomls/default.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ auto_start_bots = true
88

99
[match]
1010
# What game mode the game should load.
11-
# Accepted values are "Soccer", "Hoops", "Dropshot", "Hockey", "Rumble", "Heatseeker", "Gridiron", "Knockout"
12-
game_mode = "Soccer"
11+
# Accepted values are "Soccar", "Hoops", "Dropshot", "Snowday", "Rumble", "Heatseeker", "Gridiron", "Knockout"
12+
game_mode = "Soccar"
1313
# Which map the game should load into
1414
game_map_upk = "Stadium_P"
1515
# Automatically skip replays after a goal. Also stops match replays from being saved.

RLBotCSTests/TestTomls/edge.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ launcher = "custom"
55
launcher_arg = "something invalid"
66

77
[match]
8-
game_mode = "Soccer"
8+
game_mode = "Soccar"
99
game_map_upk = "Stadium_P"
1010

1111
[mutators]

flatbuffers-schema

0 commit comments

Comments
 (0)