1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 09:27:40 +00:00

racing:: improved Euclidean track generation

This commit is contained in:
Zeno Rogue
2018-11-18 01:42:00 +01:00
parent f6226665d0
commit d5ce7dc30b
3 changed files with 36 additions and 7 deletions

View File

@@ -817,6 +817,12 @@ eLand getEuclidLand(int c) {
}
void setLandEuclid(cell *c) {
#if CAP_RACING
if(racing::track_ready) {
setland(c, laMemory);
return;
}
#endif
setland(c, specialland);
if(specialland == laCrossroads4 || chaosmode) {
int x, y;