Skip to content

Commit

Permalink
Change return to continue
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefamar committed Sep 10, 2013
1 parent 57e6570 commit a4833f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion physi.js
Expand Up @@ -643,7 +643,7 @@ window.Physijs = (function() {

// Deal with collisions
for ( id1 in this._objects ) {
if ( !this._objects.hasOwnProperty( id1 ) ) return;
if ( !this._objects.hasOwnProperty( id1 ) ) continue;
object = this._objects[ id1 ];

// If object touches anything, ...
Expand Down

0 comments on commit a4833f0

Please sign in to comment.