mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-03 17:27:03 +00:00
gp:: Warped Coast and Crystal World do not work in a4
This commit is contained in:
parent
a91195bda1
commit
3345999180
@ -3079,6 +3079,7 @@ bool has_nice_dual() {
|
||||
if(!nonbitrunc) return true;
|
||||
if((S7 & 1) == 0) return true;
|
||||
if(!gp::on) return false;
|
||||
if(a4) return false;
|
||||
return (gp::param.first + gp::param.second * 2) % 3 == 0;
|
||||
}
|
||||
|
||||
|
@ -1156,6 +1156,9 @@ land_validity_t& land_validity(eLand l) {
|
||||
if(l == laWhirlpool && a4)
|
||||
return dont_work;
|
||||
|
||||
if(isWarped(l) && a4 && gp::on)
|
||||
return dont_work;
|
||||
|
||||
// equidistant-based lands
|
||||
if(isEquidLand(l)) {
|
||||
// no equidistants supported in chaos mode
|
||||
|
Loading…
x
Reference in New Issue
Block a user