mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-03-26 21:37:02 +00:00
fixed killable wandering Skeletons in Ruined City
This commit is contained in:
parent
c78af795ce
commit
9e4529c222
@ -551,8 +551,10 @@ void wandering() {
|
||||
else if(c->land == laSwitch && wchance(items[itSwitch], 80))
|
||||
c->monst = active_switch();
|
||||
|
||||
else if(c->land == laRuins && wchance(items[itRuins], 80))
|
||||
else if(c->land == laRuins && wchance(items[itRuins], 80)) {
|
||||
c->monst = genRuinMonster(c);
|
||||
c->hitpoints = 3;
|
||||
}
|
||||
|
||||
else if(c->land == laCaribbean && wchance(items[itPirate], 30))
|
||||
c->monst = moPirate;
|
||||
|
Loading…
x
Reference in New Issue
Block a user