Browse Source

removed catch and console log from atlas

tags/v0.1.10^2
Big Bad Waffle 6 years ago
parent
commit
4bb4231b4f
1 changed files with 2 additions and 7 deletions
  1. +2
    -7
      src/server/world/atlas.js

+ 2
- 7
src/server/world/atlas.js View File

@@ -110,13 +110,8 @@ define([

send: function (zone, msg) {
var thread = this.getThreadFromId(zone);
if (thread) {
try {
thread.worker.send(msg);
} catch (e) {
console.log(msg);
}
}
if (thread)
thread.worker.send(msg);
},

getThreadFromId: function (id) {


Loading…
Cancel
Save