mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 01:00:25 +00:00
don't return no_great_walls any longer
This commit is contained in:
parent
923420fd0d
commit
a15d3e5811
@ -706,6 +706,8 @@ EX const int frog_when = 205;
|
||||
|
||||
EX const int cursed_when = 9999; /* don't do Dice and Curse for now in daily */
|
||||
|
||||
EX const int walls_when = 9999; /* don't do walls for now in daily */
|
||||
|
||||
// check if the given land should appear in lists
|
||||
EX land_validity_t& land_validity(eLand l) {
|
||||
|
||||
@ -1131,7 +1133,7 @@ EX land_validity_t& land_validity(eLand l) {
|
||||
if(l == laCrossroads3 && !stdeucx && !bigsphere)
|
||||
return not_enough_space;
|
||||
|
||||
if(among(l, laCrossroads, laCrossroads2, laCrossroads3, laCrossroads5) && weirdhyperbolic)
|
||||
if(among(l, laCrossroads, laCrossroads2, laCrossroads3, laCrossroads5) && weirdhyperbolic && old_daily_id < walls_when)
|
||||
return no_great_walls;
|
||||
|
||||
// Crossroads IV is great in weird hyperbolic
|
||||
|
Loading…
Reference in New Issue
Block a user