Skip to content
Snippets Groups Projects
Commit 9cd4d940 authored by echicken's avatar echicken
Browse files

Climbers should keep moving if they only climbed one step.

parent 9cdb7940
Branches
Tags
No related merge requests found
......@@ -205,6 +205,10 @@ var Level = function(l, n) {
) {
lemonize(sprite);
delete sprite.ini.climbStart;
} else {
sprite.ini.constantmotion = 1;
sprite.ini.gravity = 1;
delete sprite.ini.climbStart;
}
}
......@@ -274,7 +278,7 @@ var Level = function(l, n) {
it loses its 'basher' skill.
It's too easy to just remove an entire block from the screen,
so we will produce a nice effect by dismantling the block by
one half-cell every ~ .25 seconds. */
one half-cell every ~ .5 seconds. */
var bashersGonnaBash = function(sprite) {
if(typeof sprite.ini.lastDig == "undefined")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment