renamed 'DogPlains' enums to 'Hunting'

This commit is contained in:
Zeno Rogue
2017-10-10 14:24:39 +02:00
parent fc1ad02573
commit 135e3cd336
12 changed files with 26 additions and 27 deletions
+3 -3
View File
@@ -195,7 +195,7 @@ int isNative(eLand l, eMonster m) {
case laBlizzard:
return (m == moVoidBeast || m == moIceGolem) ? 2 : 0;
case laDogPlains:
case laHunting:
return m == moHunterDog ? 1 : 0;
case laCA: return 0;
@@ -289,7 +289,7 @@ eItem treasureType(eLand l) {
case laVolcano: return itLavaLily;
case laTerracotta: case laMercuryRiver: return itTerra;
case laBlizzard: return itBlizzard;
case laDogPlains: return itDogPlains;
case laHunting: return itDogPlains;
case laCA: return itNone;
}
@@ -491,7 +491,7 @@ bool landUnlocked(eLand l) {
case laVolcano:
return gold() >= R30 && items[itElixir] >= U10;
case laDogPlains:
case laHunting:
return true;
case laTerracotta: case laMercuryRiver: