diff --git a/app/Game/Core/GameObjects/Doll.js b/app/Game/Core/GameObjects/Doll.js index b29344f..0cf2706 100755 --- a/app/Game/Core/GameObjects/Doll.js +++ b/app/Game/Core/GameObjects/Doll.js @@ -411,7 +411,7 @@ function (Parent, Exception, planck, Settings, CollisionDetector, Item, nc, Asse var edge = self.body.getContactList(); while (edge) { var contact = edge.contact; - if(!contact.IsTouching()) { + if(!contact.isTouching()) { edge = edge.next; continue; }