1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-03-25 05:59:43 +00:00

Merge pull request #445 from josephcsible/minefieldzebra

Mark Minefield and Zebra as incompatible
This commit is contained in:
Zeno Rogue
2025-09-07 10:08:56 +02:00
committed by GitHub

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;
}