Skip to content

Commit

Permalink
aaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCommCraft committed Dec 15, 2024
1 parent 8a1d3f3 commit 1a8f5aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dodgedemo/dodgedemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function makeCross(pos) {
shield.y = anchor(shield.y, player.y - player.width / 2 + shield.height / 2 + 4, player.y + player.height / 2 - shield.height / 2 - 4);
for (const cross of crosses.values()) {
cross.countdown -= time.deltaTime;
if (cross.countdown > 90) {
if (cross.countdown > 120) {
cross.visible = !Math.floor((cross.countdown / 10) % 2);
}
else if (cross.countdown > 60) {
Expand Down

0 comments on commit 1a8f5aa

Please sign in to comment.