mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-27 09:24:53 +00:00
marked new lands as 'not_implemented' for SC
This commit is contained in:
parent
164d964bab
commit
3597342f28
@ -616,6 +616,8 @@ EX int old_daily_id = 1000000;
|
|||||||
|
|
||||||
const int landscapes_when = 177;
|
const int landscapes_when = 177;
|
||||||
|
|
||||||
|
EX const int frog_when = 205;
|
||||||
|
|
||||||
// check if the given land should appear in lists
|
// check if the given land should appear in lists
|
||||||
EX land_validity_t& land_validity(eLand l) {
|
EX land_validity_t& land_validity(eLand l) {
|
||||||
|
|
||||||
@ -624,6 +626,9 @@ EX land_validity_t& land_validity(eLand l) {
|
|||||||
|
|
||||||
using namespace lv;
|
using namespace lv;
|
||||||
|
|
||||||
|
if(old_daily_id < frog_when && among(l, laFrog, laEclectic, laWet))
|
||||||
|
return not_implemented;
|
||||||
|
|
||||||
if(walls_not_implemented() && isCrossroads(l))
|
if(walls_not_implemented() && isCrossroads(l))
|
||||||
return no_walls;
|
return no_walls;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user