Browse Source

bug: Fixed a crash caused by rezoning while someone was next to you

tags/v0.10.6^2
Shaun 2 years ago
parent
commit
e507241eb6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/world/syncer.js

+ 1
- 1
src/server/world/syncer.js View File

@@ -205,7 +205,7 @@ module.exports = {
objects
.filter(o => !o.destroyed && o?.player?.hasSeen(id))
.forEach(o => {
fnQueueMsg(msg);
fnQueueMsg(msg, [o.serverId]);
});
},



Loading…
Cancel
Save