add TODOs for BB rare monsters

This commit is contained in:
Martin Michelsen
2023-06-19 15:40:33 -07:00
parent 8926c22eae
commit e8fcf2884a
+4
View File
@@ -3255,6 +3255,8 @@ shared_ptr<Lobby> create_game_generic(
} }
c->log.info("Loaded maps contain %zu entries overall", game->map->enemies.size()); c->log.info("Loaded maps contain %zu entries overall", game->map->enemies.size());
// TODO (R1): Assign rare monsters
} }
return game; return game;
} }
@@ -3427,6 +3429,8 @@ static void on_6F(shared_ptr<ServerState> s, shared_ptr<Client> c,
send_get_player_info(c); send_get_player_info(c);
} }
// TODO (R1): If the game is BB and in a joinable quest, send the quest immediately. If the game is BB and not in a joinable quest, send the rare monster config (DE)
// Handle initial commands for spectator teams // Handle initial commands for spectator teams
auto watched_lobby = l->watched_lobby.lock(); auto watched_lobby = l->watched_lobby.lock();
if (l->battle_player && (l->flags & Lobby::Flag::START_BATTLE_PLAYER_IMMEDIATELY)) { if (l->battle_player && (l->flags & Lobby::Flag::START_BATTLE_PLAYER_IMMEDIATELY)) {