1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 17:37:39 +00:00

fixed racing official track generation

This commit is contained in:
Zeno Rogue
2022-02-02 03:07:12 +01:00
parent fd634e6de8
commit 064ac7de63
6 changed files with 84 additions and 7 deletions

View File

@@ -1704,8 +1704,16 @@ EX void build_horocycles(cell *c, cell *from) {
for(cell *c: cl.lst) if(c->master->alt) currentmap->extend_altmap(c->master);
}
}
EX void buildBigStuff(cell *c, cell *from) {
#if CAP_LEGACY
if(legacy_racing()) {
buildBigStuff_legacy(c, from);
return;
}
#endif
build_walls(c, from);
build_horocycles(c, from);