farlands: do not create farlands in quotient spaces

This commit is contained in:
Zeno Rogue 2020-05-28 01:41:54 +02:00
parent 4c3703026f
commit 89bba619f0
1 changed files with 1 additions and 1 deletions

View File

@ -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;