1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 09:30:35 +00:00

reduced openplains dlimit in archimedean

This commit is contained in:
Zeno Rogue 2018-08-22 11:48:17 +02:00
parent 28b0e7afa7
commit 881a72c45b

View File

@ -1152,6 +1152,7 @@ bool openplains(cell *c) {
return true; return true;
} }
int dlimit = getDistLimit(); int dlimit = getDistLimit();
if(archimedean) dlimit--;
if(dlimit < 7) { if(dlimit < 7) {
celllister cl(c, dlimit, 1000000, NULL); celllister cl(c, dlimit, 1000000, NULL);
int bad = 0; int bad = 0;