From ece260e80ee5727bda03fbc539e5ff87a135133e Mon Sep 17 00:00:00 2001 From: logsol Date: Thu, 25 Dec 2014 15:06:36 +0100 Subject: [PATCH] fixed drop error. added carrier velocity, bugfix --- app/Game/Core/GameObjects/Doll.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Game/Core/GameObjects/Doll.js b/app/Game/Core/GameObjects/Doll.js index 9f620f4..eb2b3a5 100755 --- a/app/Game/Core/GameObjects/Doll.js +++ b/app/Game/Core/GameObjects/Doll.js @@ -360,7 +360,7 @@ function (Parent, Box2D, Settings, CollisionDetector, Item, Nc) { this.holdingItem = null; var dollVelocity = { - x: this.body.GetLinearVelocity().x + x: this.body.GetLinearVelocity().x, y: this.body.GetLinearVelocity().y };