diff --git a/app/Game/Core/GameObjects/SpectatorDoll.js b/app/Game/Core/GameObjects/SpectatorDoll.js index a6afbf3..912314a 100644 --- a/app/Game/Core/GameObjects/SpectatorDoll.js +++ b/app/Game/Core/GameObjects/SpectatorDoll.js @@ -8,7 +8,7 @@ function (Parent, Box2D) { "use strict"; function SpectatorDoll(physicsEngine, uid, player) { - Parent.call(this, physicsEngine, uid); + //Parent.call(this, physicsEngine, uid); } SpectatorDoll.prototype = Object.create(Parent.prototype); @@ -33,6 +33,9 @@ function (Parent, Box2D) { SpectatorDoll.prototype.update = function() { }; + + SpectatorDoll.prototype.destroy = function() { + }; return SpectatorDoll;