1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-20 15:40:26 +00:00

Frog Park is no longer generated adjacent to Land of Motion

This commit is contained in:
Zeno Rogue 2020-03-12 10:33:03 +01:00
parent 83407fe2db
commit 6447333d03

View File

@ -187,6 +187,7 @@ EX bool incompatible1(eLand l1, eLand l2) {
if(l1 == laWarpSea && l2 == laKraken) return true;
if(l1 == laPrairie && l2 == laCrossroads3) return true;
if(l1 == laWet && l2 == laDesert) return true;
if(l1 == laFrog && l2 == laMotion) return true;
if(isElemental(l1) && isElemental(l2)) return true;
return false;
}