12
1
Dieser Commit ist enthalten in:
Zeanon 2021-05-19 10:19:31 +02:00
Ursprung 9d21214204
Commit e181c42b12

Datei anzeigen

@ -119,7 +119,7 @@ public class HellsBells {
}
currentDrops++;
currentCountdown = new HellsBellsCountdown(current.MIN_TIME + random.nextInt(current.MAX_TIME - current.MIN_TIME), SWSound.BLOCK_NOTE_BASS, true);
currentCountdown = new HellsBellsCountdown(current.MIN_TIME + random.nextInt(current.MAX_TIME - current.MIN_TIME));
currentCountdown.enable();
}
@ -175,8 +175,8 @@ public class HellsBells {
class HellsBellsCountdown extends Countdown {
public HellsBellsCountdown(int time, SWSound sound, boolean level) {
super(time, sound, level);
public HellsBellsCountdown(int time) {
super(time, SWSound.BLOCK_NOTE_BASS, true);
}
@Override
@ -227,7 +227,6 @@ public class HellsBells {
private enum State {
NONE(0, 0, 0),
PRE(60, 80, 1),
FIRST(40, 60, 5),
SECOND(30, 40, 6),
@ -261,7 +260,7 @@ public class HellsBells {
case LAST:
return LAST;
default:
return NONE;
return PRE;
}
}
}