mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-17 14:17:10 +00:00
Mark Minefield and Zebra as incompatible
They look way too similar, especially in geometries without Great Walls like Archimedean (6,4,4,4).
This commit is contained in:
@@ -400,6 +400,7 @@ EX bool incompatible1(eLand l1, eLand l2) {
|
|||||||
if(l1 == laBull && l2 == laTerracotta) return true;
|
if(l1 == laBull && l2 == laTerracotta) return true;
|
||||||
if(l1 == laReptile && l2 == laTerracotta) return true;
|
if(l1 == laReptile && l2 == laTerracotta) return true;
|
||||||
if(l1 == laBull && l2 == laDeadCaves) return true;
|
if(l1 == laBull && l2 == laDeadCaves) return true;
|
||||||
|
if(l1 == laMinefield && l2 == laZebra) return true;
|
||||||
if(isElemental(l1) && isElemental(l2)) return true;
|
if(isElemental(l1) && isElemental(l2)) return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user