mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 01:00:25 +00:00
Temple walls are now random (never full) in weirdhyperbolic && nonbitrunc
This commit is contained in:
parent
90d4f0d613
commit
a1118216dd
@ -1255,7 +1255,10 @@ void moreBigStuff(cell *c) {
|
||||
c->land = laTemple, c->wall = waNone, c->monst = moNone, c->item = itNone;
|
||||
}
|
||||
if(d % TEMPLE_EACH==0) {
|
||||
if((weirdhyperbolic && nonbitrunc) ? hrand(100) < 50 : pseudohept(c))
|
||||
if(weirdhyperbolic && nonbitrunc) {
|
||||
if(hrand(100) < 50) c->wall = waColumn;
|
||||
}
|
||||
else if(pseudohept(c))
|
||||
c->wall = waColumn;
|
||||
else {
|
||||
if(!euclid) for(int i=0; i<S7; i++) generateAlts(c->master->move[i]);
|
||||
|
Loading…
Reference in New Issue
Block a user