1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-04 17:57:03 +00:00

disabled the new lands in Daily for now

This commit is contained in:
Zeno Rogue 2021-05-31 11:47:54 +02:00
parent 56908743e3
commit 32c4a5d4ff

View File

@ -702,6 +702,8 @@ const int landscapes_when = 177;
EX const int frog_when = 205;
EX const int cursed_when = 9999; /* don't do Dice and Curse for now in daily */
// check if the given land should appear in lists
EX land_validity_t& land_validity(eLand l) {
@ -718,6 +720,9 @@ EX land_validity_t& land_validity(eLand l) {
if(old_daily_id < frog_when && among(l, laFrog, laEclectic, laWet))
return not_implemented;
if(old_daily_id < cursed_when && among(l, laCursed, laDice))
return not_implemented;
if(arb::in() && among(l, laWarpCoast, laDual, laEclectic, laReptile, laKraken))
return not_implemented;