Browse Source

fix

tags/v0.10.6.5
Shaun 2 years ago
parent
commit
b1ea35d373
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/security/connections/route.js

+ 1
- 1
src/server/security/connections/route.js View File

@@ -33,7 +33,7 @@ const route = function (socket, msg) {
}

let target = source;
if (msg.data.targetId !== undefined && msg.data.cpn === 'undefined') {
if (msg.data.targetId !== undefined && msg.data.cpn === undefined) {
target = this.players.find(p => p.id === msg.data.targetId);
if (!target)
return;


Loading…
Cancel
Save