mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-11 09:50:34 +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;
|
||||
|
||||
EX const int frog_when = 205;
|
||||
|
||||
// check if the given land should appear in lists
|
||||
EX land_validity_t& land_validity(eLand l) {
|
||||
|
||||
@ -624,6 +626,9 @@ EX land_validity_t& land_validity(eLand l) {
|
||||
|
||||
using namespace lv;
|
||||
|
||||
if(old_daily_id < frog_when && among(l, laFrog, laEclectic, laWet))
|
||||
return not_implemented;
|
||||
|
||||
if(walls_not_implemented() && isCrossroads(l))
|
||||
return no_walls;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user