We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd5d152 commit 6f2935aCopy full SHA for 6f2935a
tests/necto/bot.py
@@ -54,6 +54,14 @@ class Necto(Bot):
54
def initialize_agent(self):
55
# Initialize the rlgym GameState object now that the game is active and the info is available
56
self.obs_builder = NectoObsBuilder(self.field_info)
57
+
58
+ if len(self.field_info.boost_pads) != 34:
59
+ self.logger.warning(
60
+ "The standard number of boost pads is 34, but this map has %d:%s",
61
+ len(self.field_info.boost_pads),
62
+ "\n".join(map(str, self.field_info.boost_pads)),
63
+ )
64
65
self.game_state = GameState(self.field_info, self.tick_skip)
66
67
self.logger.warning(
0 commit comments