diff --git a/SQCSim-srv/server.cpp b/SQCSim-srv/server.cpp index 622ab6c..af7214a 100644 --- a/SQCSim-srv/server.cpp +++ b/SQCSim-srv/server.cpp @@ -327,8 +327,8 @@ void Server::Run() { sendPackTo(m_sock_udp, bull, &m_buf, conn->getAddr()); delete bull; } + netbull.clear(); - for (auto& bull : bullets) { ChunkMod* cmod = nullptr; if (bull->Update(m_world, (1. / 60.), 20, m_players, &cmod)) { @@ -337,7 +337,6 @@ void Server::Run() { outbox_bullets.emplace_back(std::move(bull)); } } - netbull.clear(); for (auto& chat : chatlog) { Log(chat->mess, false, false); @@ -354,9 +353,9 @@ void Server::Run() { } chunkdiffs.clear(); - for (auto& bull : outbox_bullets) - delete bull; - outbox_bullets.clear(); + //for (auto& bull : outbox_bullets) + // delete bull; + //outbox_bullets.clear(); } Chat end;