mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 01:00:25 +00:00
Fixed the bug with instakillable Salamanders
This commit is contained in:
parent
26878f16c3
commit
d2bdad03ae
@ -509,8 +509,10 @@ void wandering() {
|
||||
else if(c->land == laBlizzard && wchance(items[itBlizzard], 120))
|
||||
c->monst = hrand(5) ? moVoidBeast : moIceGolem;
|
||||
|
||||
else if(c->land == laVolcano && wchance(items[itLavaLily], 120))
|
||||
else if(c->land == laVolcano && wchance(items[itLavaLily], 120)) {
|
||||
c->monst = hrand(5) ? moLavaWolf : moSalamander;
|
||||
c->hitpoints = 3;
|
||||
}
|
||||
|
||||
else if(c->land == laTrollheim && wchance(items[itTrollEgg], 150))
|
||||
c->monst = pickTroll(c);
|
||||
|
Loading…
Reference in New Issue
Block a user