Skip to content

Commit 1a8f5aa

Browse files
committed
aaaaa
1 parent 8a1d3f3 commit 1a8f5aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dodgedemo/dodgedemo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function makeCross(pos) {
131131
shield.y = anchor(shield.y, player.y - player.width / 2 + shield.height / 2 + 4, player.y + player.height / 2 - shield.height / 2 - 4);
132132
for (const cross of crosses.values()) {
133133
cross.countdown -= time.deltaTime;
134-
if (cross.countdown > 90) {
134+
if (cross.countdown > 120) {
135135
cross.visible = !Math.floor((cross.countdown / 10) % 2);
136136
}
137137
else if (cross.countdown > 60) {

0 commit comments

Comments
 (0)