From 89bba619f08a8fe9abd138c6baa3678e0f703e51 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 28 May 2020 01:41:54 +0200 Subject: [PATCH] farlands: do not create farlands in quotient spaces --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index dac9d978..38b70674 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2918,7 +2918,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 && hyperbolic) { + if(gdist > global_distance_limit && hyperbolic && !quotient) { gdist -= global_distance_limit; if(d == 8 && hrand(100) < gdist) { if(!isMultitile(c)) c->monst = moNone;