don't send spectator commands during loading

This commit is contained in:
Martin Michelsen
2022-12-25 21:21:39 -08:00
parent 5a25c3e865
commit 3bb33a4de7
3 changed files with 25 additions and 3 deletions
+3 -3
View File
@@ -199,7 +199,7 @@ void Server::send(const void* data, size_t size) const {
send_command(l, 0xC9, 0x00, data, size);
for (auto watcher_l : l->watcher_lobbies) {
send_command(watcher_l, 0xC9, 0x00, data, size);
send_command_if_not_loading(watcher_l, 0xC9, 0x00, data, size);
}
if (l->battle_record && l->battle_record->writable()) {
l->battle_record->add_command(
@@ -2120,7 +2120,7 @@ void Server::handle_6xB3x40_map_list_request(const string& data) {
w.write(list_data);
send_command(l, 0x6C, 0x00, w.str());
for (auto watcher_l : l->watcher_lobbies) {
send_command(watcher_l, 0x6C, 0x00, w.str());
send_command_if_not_loading(watcher_l, 0x6C, 0x00, w.str());
}
if (l->battle_record && l->battle_record->writable()) {
@@ -2144,7 +2144,7 @@ void Server::handle_6xB3x41_map_request(const string& data) {
auto out_cmd = this->prepare_6xB6x41_map_definition(base->last_chosen_map);
send_command(l, 0x6C, 0x00, out_cmd);
for (auto watcher_l : l->watcher_lobbies) {
send_command(watcher_l, 0x6C, 0x00, out_cmd);
send_command_if_not_loading(watcher_l, 0x6C, 0x00, out_cmd);
}
if (l->battle_record && l->battle_record->writable()) {