diff --git a/landgen.cpp b/landgen.cpp index a4e908a6..bea02466 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2914,7 +2914,7 @@ EX void setdist(cell *c, int d, cell *from) { // the number of tiles in the standard geometry has about 7553 digits! int gdist = abs(c->master->distance); - if(gdist > global_distance_limit) { + if(gdist > global_distance_limit && hyperbolic) { gdist -= global_distance_limit; if(d == 8 && hrand(100) < gdist) { if(!isMultitile(c)) c->monst = moNone;