From 32c4a5d4ffa2b0f135d638acf61ff4f77573eed8 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 31 May 2021 11:47:54 +0200 Subject: [PATCH] disabled the new lands in Daily for now --- landlock.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/landlock.cpp b/landlock.cpp index d7978449..ac195ce6 100644 --- a/landlock.cpp +++ b/landlock.cpp @@ -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;