Browse Source

Merge branch 'master' into 'release'

bug: Fixed players getting stuck inside he player list when relogging during a zone regen

See merge request Isleward/isleward!626
tags/v0.12.0.12
Big Bad Waffle 11 months ago
parent
commit
02321c50b6
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      src/server/world/instancer.js

+ 10
- 0
src/server/world/instancer.js View File

@@ -319,6 +319,16 @@ module.exports = {
if (this.regenBusy) {
this.unqueueMessage(msg);

if (msg.callbackId) {
process.send({
module: 'atlas',
method: 'resolveCallback',
msg: {
id: msg.callbackId
}
});
}

return;
}



Loading…
Cancel
Save