mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 22:39:53 +00:00
no more broken Red Raider pairs close to player start
This commit is contained in:
parent
84a6aafbf1
commit
aa3ecdd923
4
game.cpp
4
game.cpp
@ -3047,6 +3047,10 @@ bool makeEmpty(cell *c) {
|
|||||||
|
|
||||||
if(c->monst != moPrincess) {
|
if(c->monst != moPrincess) {
|
||||||
if(isAnyIvy(c->monst)) killMonster(c, moPlayer, 0);
|
if(isAnyIvy(c->monst)) killMonster(c, moPlayer, 0);
|
||||||
|
else if(c->monst == moPair) {
|
||||||
|
if(c->mov[c->mondir]->monst == moPair)
|
||||||
|
c->mov[c->mondir]->monst = moNone;
|
||||||
|
}
|
||||||
else if(isWorm(c->monst)) {
|
else if(isWorm(c->monst)) {
|
||||||
if(!items[itOrbDomination]) return false;
|
if(!items[itOrbDomination]) return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user