1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-20 11:54:48 +00:00

fixed is_master for 3D euclidean

This commit is contained in:
Zeno Rogue 2022-08-23 21:42:53 +02:00
parent ecadc352f1
commit 9ab84d9afd

View File

@ -2565,7 +2565,7 @@ EX namespace patterns {
EX }
EX bool is_master(cell *c) {
if(euclid) return pseudohept(c);
if(euc::in(2)) return pseudohept(c);
else return c->master->c7 == c;
}