1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-17 22:04:07 +00:00

product:: ishept

This commit is contained in:
Zeno Rogue 2019-08-18 23:12:46 +02:00
parent 1a1725dec8
commit 3e1fc42dc5

View File

@ -56,7 +56,7 @@ int eupattern4(cell *c) {
EX bool ishept(cell *c) { EX bool ishept(cell *c) {
// EUCLIDEAN // EUCLIDEAN
if(euclid) return eupattern(c) == 0; if(euclid) return eupattern(c) == 0;
else return c->type == S7; else return c->type == S7 + (prod ? 2 : 0);
} }
EX bool ishex1(cell *c) { EX bool ishex1(cell *c) {