1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-16 19:18:05 +00:00

CAP_FIELD part 1

This commit is contained in:
?
2019-02-17 18:33:15 +01:00
committed by Zeno Rogue
parent b25730d5c9
commit c5a771c888
15 changed files with 103 additions and 5 deletions

View File

@@ -1087,6 +1087,7 @@ void buildBigStuff(cell *c, cell *from) {
else if(c->land == laCrossroads2 && BITRUNCATED)
buildCrossroads2(c);
#if CAP_FIELD
else if(c->land == laPrairie && c->LHU.fi.walldist == 0 && !euclid) {
for(int bd=0; bd<7; bd++) {
int fval2 = createStep(c->master, bd)->fieldval;
@@ -1097,6 +1098,7 @@ void buildBigStuff(cell *c, cell *from) {
}
}
}
#endif
else if(ctof(c) && c->land && hrand(I10000) < wallchance(c, deepOcean))
{