Skip to content

Commit

Permalink
Fix for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
foligno committed Mar 4, 2015
1 parent d585e80 commit 05f1c46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/matter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5115,7 +5115,7 @@ var Sleeping = {};
motion = body.speed * body.speed + body.angularSpeed * body.angularSpeed;

// wake up bodies if they have a force applied
if (body.force.x != 0 || body.force.y != 0) {
if (body.force.x !== 0 || body.force.y !== 0) {
Sleeping.set(body, false);
continue;
}
Expand Down
Loading

0 comments on commit 05f1c46

Please sign in to comment.