mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-25 16:37:00 +00:00
fixed renaming
This commit is contained in:
parent
680db1be32
commit
9214bdb714
@ -289,7 +289,7 @@ eItem treasureType(eLand l) {
|
|||||||
case laVolcano: return itLavaLily;
|
case laVolcano: return itLavaLily;
|
||||||
case laTerracotta: case laMercuryRiver: return itTerra;
|
case laTerracotta: case laMercuryRiver: return itTerra;
|
||||||
case laBlizzard: return itBlizzard;
|
case laBlizzard: return itBlizzard;
|
||||||
case laHunting: return itDogPlains;
|
case laHunting: return itHunting;
|
||||||
|
|
||||||
case laCA: return itNone;
|
case laCA: return itNone;
|
||||||
}
|
}
|
||||||
|
@ -444,7 +444,7 @@ void wandering() {
|
|||||||
else if(c->land == laIce && wchance(items[itDiamond], 10))
|
else if(c->land == laIce && wchance(items[itDiamond], 10))
|
||||||
c->monst = hrand(2) ? moWolf : moYeti;
|
c->monst = hrand(2) ? moWolf : moYeti;
|
||||||
|
|
||||||
else if(c->land == laHunting && wchance(items[itDogPlains], 50, 26))
|
else if(c->land == laHunting && wchance(items[itHunting], 50, 26))
|
||||||
c->monst = moHunterDog;
|
c->monst = moHunterDog;
|
||||||
|
|
||||||
else if(c->land == laDesert && wchance(items[itSpice], 10))
|
else if(c->land == laDesert && wchance(items[itSpice], 10))
|
||||||
|
Loading…
Reference in New Issue
Block a user