1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +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) {
// 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) {