1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-08 00:01:24 +00:00

fixed Huntng Ground in quickly expanding geometries

This commit is contained in:
Zeno Rogue
2026-04-17 20:52:44 +02:00
parent 1cde82e788
commit 96a96541c7

View File

@@ -2005,7 +2005,10 @@ EX bool openplains(cell *c) {
}
int dlimit = getDistLimit();
if(arcm::in()) dlimit--;
if(dlimit < 7) {
if(getDistLimit() < 4) {
return true;
}
else if(dlimit < 7) {
celllister cl(c, dlimit, 1000000, NULL);
int bad = 0;
for(cell *c: cl.lst) {