1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-30 22:40:17 +00:00

options -W3 and -top

This commit is contained in:
Zeno Rogue
2018-03-30 00:20:33 +02:00
parent 21a7c8fca9
commit eafd5a1eab
5 changed files with 26 additions and 4 deletions

View File

@@ -985,7 +985,11 @@ void buildBigStuff(cell *c, cell *from) {
// buildgreatwalls
if(celldist(c) < 3) ;
if(celldist(c) < 3) {
if(c == cwt.c->master->move[3]->c7 && top_land) {
buildBarrierStrong(c, 6, true, top_land);
}
}
else if(chaosmode) {
if(ctof(c) && hrand(10000) < 9000 && c->land && !inmirror(c) && buildBarrierNowall(c, getNewLand(c->land)))