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

made the Land of Dice a lucky land

This commit is contained in:
Zeno Rogue
2021-05-27 16:35:11 +02:00
parent a5fdc985c2
commit 4b6b1379e6
2 changed files with 11 additions and 5 deletions

View File

@@ -293,7 +293,7 @@ EX bool isPermanentFlying(eMonster m) {
}
EX bool isLuckyLand(eLand l) {
return among(l, laIce, laDesert, laDeadCaves, laOvergrown);
return among(l, laIce, laDesert, laDeadCaves, laOvergrown, laDice);
}
EX bool survivesFire(eMonster m) {