1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-05 16:23:06 +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:
Joseph C. Sible
2025-09-06 23:27:32 -04:00
parent 7c0d2649e3
commit 068ae16b3a

View File

@@ -400,6 +400,7 @@ EX bool incompatible1(eLand l1, eLand l2) {
if(l1 == laBull && l2 == laTerracotta) return true;
if(l1 == laReptile && l2 == laTerracotta) return true;
if(l1 == laBull && l2 == laDeadCaves) return true;
if(l1 == laMinefield && l2 == laZebra) return true;
if(isElemental(l1) && isElemental(l2)) return true;
return false;
}