HellsBells #275
@ -119,7 +119,7 @@ public class HellsBells {
|
|||||||
}
|
}
|
||||||
|
|
||||||
currentDrops++;
|
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();
|
currentCountdown.enable();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,8 +175,8 @@ public class HellsBells {
|
|||||||
|
|
||||||
class HellsBellsCountdown extends Countdown {
|
class HellsBellsCountdown extends Countdown {
|
||||||
|
|
||||||
public HellsBellsCountdown(int time, SWSound sound, boolean level) {
|
public HellsBellsCountdown(int time) {
|
||||||
super(time, sound, level);
|
super(time, SWSound.BLOCK_NOTE_BASS, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -227,7 +227,6 @@ public class HellsBells {
|
|||||||
|
|
||||||
private enum State {
|
private enum State {
|
||||||
|
|
||||||
NONE(0, 0, 0),
|
|
||||||
PRE(60, 80, 1),
|
PRE(60, 80, 1),
|
||||||
FIRST(40, 60, 5),
|
FIRST(40, 60, 5),
|
||||||
SECOND(30, 40, 6),
|
SECOND(30, 40, 6),
|
||||||
@ -261,7 +260,7 @@ public class HellsBells {
|
|||||||
case LAST:
|
case LAST:
|
||||||
return LAST;
|
return LAST;
|
||||||
default:
|
default:
|
||||||
return NONE;
|
return PRE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren