Skip to content

Commit

Permalink
Update js/lib/player.js
Browse files Browse the repository at this point in the history
Limits the number of clones down.. there is an odd bug with jumping, and this will fix it..well, work around it
  • Loading branch information
hobnob committed Nov 30, 2012
1 parent 7e70e32 commit eb60734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/lib/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function player()
//The C key clones a playable, so that the player can use
//that instead
case gamejs.event.K_c:
if ( _numClones < 100 )
if ( _numClones < 10 )
{
this.clone();
_numClones++;
Expand Down

0 comments on commit eb60734

Please sign in to comment.