keep in sync when dead

This commit is contained in:
MarcEricMartel
2023-12-13 16:29:13 -05:00
parent 7b350fa403
commit 325c6b60f9
3 changed files with 15 additions and 2 deletions

View File

@@ -374,7 +374,7 @@ void Server::Run() {
for (auto bull = bullets.begin(); bull != bullets.end(); ++bull) {
ChunkMod* cmod = nullptr;
Bullet* bullet = *bull;
if (bullet->Update(m_world, (1. / 60.), 10, m_players, &cmod)) {
if (bullet->Update(m_world, (1. / 60.), 100, m_players, &cmod)) {
if (cmod)
chunkdiffs.emplace_back(cmod);
bullit.push_back(bull);