mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-11 09:50:34 +00:00
Wetland and Desert no longer can start together
This commit is contained in:
parent
a76cbaaf7c
commit
ced8e540d1
@ -186,6 +186,7 @@ EX bool incompatible1(eLand l1, eLand l2) {
|
||||
if(l1 == laDeadCaves && l2 == laCaves) return true;
|
||||
if(l1 == laWarpSea && l2 == laKraken) return true;
|
||||
if(l1 == laPrairie && l2 == laCrossroads3) return true;
|
||||
if(l1 == laWet && l2 == laDesert) return true;
|
||||
if(isElemental(l1) && isElemental(l2)) return true;
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user