adjusting Miners for Eclectic

This commit is contained in:
Zeno Rogue 2020-02-26 01:31:31 +01:00
parent d1bbc6e83e
commit 92deb5e6b1
1 changed files with 5 additions and 0 deletions

View File

@ -549,6 +549,11 @@ EX void killMonster(cell *c, eMonster who, flagtype deathflags IS(0)) {
if(c->move(i)->monst == moSlime || c->move(i)->monst == moSlimeNextTurn)
killMonster(c->move(i), who);
}
forCellEx(c2, c) {
if(c2->wall == waPalace) c2->wall = waRubble;
if(c2->wall == waDeadwall) c2->wall = waDeadfloor2;
if(c2->wall == waExplosiveBarrel) explodeBarrel(c2);
}
}
if(m == moOrangeDog) {
if(pcount) for(int i=0; i<8; i++) {