Skip to content

Commit

Permalink
changed lock delay curve
Browse files Browse the repository at this point in the history
the current one was a bit difficult so i made it easier by making it intersect with (40, 150)
  • Loading branch information
Spentine committed Jun 4, 2024
1 parent ba876d3 commit f904ad3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ var settings = {
"ghost": true,
},
};
// console.log(JSON.stringify(settings));

var keyMappings = {
"ArrowLeft": "left",
Expand Down
3 changes: 2 additions & 1 deletion stacker/stacker.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,8 @@ class Stacker {
*/

if (level > 20) {
return (1 / (0.0004 * level - 0.006));
// return (1 / (0.0004 * level - 0.006)); // (40, 100)
return (1 / (0.00023333333333333333 * level - 0.0026666666666666666));
} else {
return 500;
}
Expand Down

0 comments on commit f904ad3

Please sign in to comment.