3D:: no more statues of Cthulhu in 3D shmup

This commit is contained in:
? 2019-02-22 21:31:14 +01:00 committed by Zeno Rogue
parent 6b893af89e
commit 481b417d70
1 changed files with 1 additions and 1 deletions

View File

@ -1366,7 +1366,7 @@ void giantLandSwitch(cell *c, int d, cell *from) {
else {
// int d0 = d % TEMPLE_EACH;
// if(d0<0) d0=-d0;
if(hrand(100) < (peace::on ? 15 : 30)) // && d0 != 1 && d0 != TEMPLE_EACH-1)
if(hrand(100) < (peace::on ? 15 : 30) && !(DIM == 3 && shmup::on))
c->wall = waBigStatue;
else if(hrand(20000) < -d)
c->monst = hrand(3) ? moCultist : moPyroCultist;