1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-05-10 11:14:07 +00:00

disabled Red Raiders from shmup in Eclectic

This commit is contained in:
Zeno Rogue 2025-04-26 16:31:18 +02:00
parent f9bf56dfcb
commit fa914c11b8

View File

@ -256,7 +256,7 @@ EX void gen_eclectic_monster(cell *c) {
else if(c2->wall == waIcewall)
c->monst = pick(moWolf, moIceGolem);
else if(c2->wall == waNone && !c2->monst && hrand(100) < 5) {
else if(c2->wall == waNone && !c2->monst && hrand(100) < 5 && !shmup::on) {
cell *c1 = c;
c1->monst = moPair;
c2->monst = moPair;