destroying doll body on kill, fixes #66

This commit is contained in:
logsol 2014-06-07 15:48:03 +02:00
parent 24e179f3b2
commit ef98b9dd28
2 changed files with 3 additions and 2 deletions

View file

@ -442,6 +442,7 @@ function (Parent, Box2D, Settings, CollisionDetector, Item, Nc) {
};
Doll.prototype.destroy = function() {
Parent.prototype.destroy.call(this);
};
return Doll;