1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-29 03:51:23 +00:00

racing:: remembering ghost, track selection (with times), completion percentage shown

This commit is contained in:
Zeno Rogue
2018-11-24 15:35:02 +01:00
parent 27011f1cf0
commit c67d7e06c6
6 changed files with 160 additions and 60 deletions

View File

@@ -35,7 +35,7 @@ bool verless(string v, string cmp) {
bool do_use_special_land() {
return
!safety &&
(peace::on || tactic::on || geometry || NONSTDVAR || randomPatternsMode || yendor::on);
(peace::on || tactic::on || geometry || NONSTDVAR || randomPatternsMode || yendor::on || racing::on);
}
hookset<bool()> *hooks_welcome_message;
@@ -113,6 +113,8 @@ void initgame() {
firstland = safetyland;
}
if(racing::on) racing::apply_seed();
bool use_special_land = do_use_special_land();
if(use_special_land) firstland = specialland;