Skip to content

Commit

Permalink
fixed a muffed up assert statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jbphet committed Jun 9, 2017
1 parent 50e2d21 commit bc5ae0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/game/view/LevelSelectionNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ define( function( require ) {
}, options );

// Verify parameters
assert(
assert && assert(
iconNodes.length === options.numLevels && scores.length === options.numLevels,
'Number of game levels doesn\'t match length of provided arrays'
);
Expand Down

0 comments on commit bc5ae0b

Please sign in to comment.