mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-01 00:07:02 +00:00
shmup:: count_pauses is now reset to 0, and also not displayed in standard shmup
This commit is contained in:
parent
035532ef26
commit
b4302ac6b4
@ -2581,7 +2581,7 @@ EX void turn(int delta) {
|
|||||||
in_pause = true;
|
in_pause = true;
|
||||||
if(!(racing::on && !racing::started() && !racing::finished())) {
|
if(!(racing::on && !racing::started() && !racing::finished())) {
|
||||||
count_pauses++;
|
count_pauses++;
|
||||||
addMessage(XLAT("Pauses: %1 of %2 allowed", its(count_pauses), its(racing::pause_limit)));
|
if(racing::on) addMessage(XLAT("Pauses: %1 of %2 allowed", its(count_pauses), its(racing::pause_limit)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(racing::on) {
|
if(racing::on) {
|
||||||
|
@ -211,6 +211,7 @@ EX void initgame() {
|
|||||||
clearing::direct = 0;
|
clearing::direct = 0;
|
||||||
clearing::imputed = 0;
|
clearing::imputed = 0;
|
||||||
rosephase = 0;
|
rosephase = 0;
|
||||||
|
shmup::count_pauses = 0;
|
||||||
|
|
||||||
if(firstland == laElementalWall) cwt.at->land = randomElementalLand();
|
if(firstland == laElementalWall) cwt.at->land = randomElementalLand();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user