Selaa lähdekoodia

removed catch and console log from atlas

tags/v0.1.10^2
Big Bad Waffle 6 vuotta sitten
vanhempi
commit
4bb4231b4f
1 muutettua tiedostoa jossa 2 lisäystä ja 7 poistoa
  1. +2
    -7
      src/server/world/atlas.js

+ 2
- 7
src/server/world/atlas.js Näytä tiedosto

@@ -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) {


Ladataan…
Peruuta
Tallenna