Skip to content

Commit 8a1d3f3

Browse files
committed
damage time
1 parent 19a8fd7 commit 8a1d3f3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dodgedemo/dodgedemo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@ function makeCross(pos) {
134134
if (cross.countdown > 90) {
135135
cross.visible = !Math.floor((cross.countdown / 10) % 2);
136136
}
137-
else if (cross.countdown > 30) {
137+
else if (cross.countdown > 60) {
138138
cross.visible = !Math.floor((cross.countdown / 5) % 2);
139139
}
140140
else if (cross.countdown >= 0) {
141-
cross.visible = !Math.floor((cross.countdown / 2) % 2);
141+
cross.visible = true;
142142
}
143143
else {
144144
app.stage.removeChild(cross);

0 commit comments

Comments
 (0)