product:: ishept

This commit is contained in:
Zeno Rogue
2019-09-12 22:50:14 +02:00
parent 1a1725dec8
commit 3e1fc42dc5
+1 -1
View File
@@ -56,7 +56,7 @@ int eupattern4(cell *c) {
EX bool ishept(cell *c) {
// EUCLIDEAN
if(euclid) return eupattern(c) == 0;
else return c->type == S7;
else return c->type == S7 + (prod ? 2 : 0);
}
EX bool ishex1(cell *c) {