mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-11 18:00:34 +00:00
adjusting Miners for Eclectic
This commit is contained in:
parent
d1bbc6e83e
commit
92deb5e6b1
@ -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)
|
if(c->move(i)->monst == moSlime || c->move(i)->monst == moSlimeNextTurn)
|
||||||
killMonster(c->move(i), who);
|
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(m == moOrangeDog) {
|
||||||
if(pcount) for(int i=0; i<8; i++) {
|
if(pcount) for(int i=0; i<8; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user