From 992d952005ec548cc5852b12cc0d518a9a0d83e0 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 28 Jun 2018 10:29:32 +0200 Subject: [PATCH] in quotient geometries, the whole world is now generated at level 8 (otherwise Blizzard breaks down) --- system.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system.cpp b/system.cpp index 9f85fc7c..10085037 100644 --- a/system.cpp +++ b/system.cpp @@ -291,6 +291,9 @@ void initgame() { bfs(); checkmove(); playermoved = true; + + if(quotient || sphere) + for(cell *c: currentmap->allcells()) setdist(c, 8, NULL); if(!cheater) gamerange_bonus = genrange_bonus = 0; }