1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 03:09:59 +00:00

disabled the roundabout bugfix in landgen in Archimedean

This commit is contained in:
Zeno Rogue 2018-09-02 15:09:46 +02:00
parent a239a26843
commit dc7e60952b

View File

@ -2375,7 +2375,7 @@ void setdist(cell *c, int d, cell *from) {
// this fixes the following problem:
// http://steamcommunity.com/app/342610/discussions/0/1470840994970724215/
if(!generatingEquidistant && from && d >= 7 && c->land && !binarytiling) {
if(!generatingEquidistant && from && d >= 7 && c->land && !binarytiling && !archimedean) {
int cdi = celldist(c);
if(celldist(from) > cdi) {
forCellCM(c2, c) if(celldist(c2) < cdi) {