fixed #91 crash after round end

This commit is contained in:
logsol 2014-12-27 22:35:26 +01:00
parent b92cce88f2
commit 4f3a53ca53
6 changed files with 15 additions and 18 deletions

View file

@ -17,6 +17,8 @@ function (Abstract) {
current: { x: 0, y: 0},
target: { x: 0, y: 0}
};
this.ncTokens = [];
}
Object.defineProperty(Layer, 'ID', {
@ -49,5 +51,9 @@ function (Abstract) {
this.zoom.target = z;
};
Layer.prototype.destroy = function() {
};
return Layer;
});