Added some land incompatibilities

This commit is contained in:
Zeno Rogue 2022-08-25 10:41:57 +02:00
parent 9f48d4f194
commit d66a877889
1 changed files with 3 additions and 0 deletions

View File

@ -271,6 +271,9 @@ EX bool incompatible1(eLand l1, eLand l2) {
if(l1 == laPrairie && l2 == laCrossroads4) return true;
if(l1 == laWet && l2 == laDesert) return true;
if(l1 == laFrog && l2 == laMotion) return true;
if(l1 == laBull && l2 == laTerracotta) return true;
if(l1 == laReptile && l2 == laTerracotta) return true;
if(l1 == laBull && l2 == laDeadCaves) return true;
if(isElemental(l1) && isElemental(l2)) return true;
return false;
}