1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-17 11:38:05 +00:00

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

View File

@@ -698,7 +698,7 @@ eMonster summonedAt(cell *dest) {
if(dest->wall == waGiantRug)
return moVizier;
if(dest->wall == waNone) {
if(dest->land == laDogPlains) return moAirElemental;
if(dest->land == laHunting) return moAirElemental;
if(dest->land == laBull) return moRagingBull;
if(dest->land == laPrairie) return moAirElemental;
if(dest->land == laZebra) return moAirElemental;
@@ -738,7 +738,6 @@ eMonster summonedAt(cell *dest) {
if(dest->land == laBurial) return moEarthElemental;
if(dest->land == laVolcano) return moFireElemental;
if(dest->land == laBlizzard) return moAirElemental;
if(dest->land == laDogPlains) return moAirElemental;
if(dest->land == laTerracotta) return moEarthElemental;
if(isHaunted(dest->land)) return moGhost;
}