diff --git a/monstergen.cpp b/monstergen.cpp index 44c050b1..9f00dd03 100644 --- a/monstergen.cpp +++ b/monstergen.cpp @@ -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);