Browse Source

chore: linter warning fix

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

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

@@ -12,7 +12,7 @@ module.exports = {
playing: 0,

onHandshake: function (socket) {
if (this.players.some(p => p.socket.id === socket.id))
if (this.players.some(f => f.socket.id === socket.id))
return;

const p = objects.build();


Loading…
Cancel
Save