gp:: pseudohepts on non-threecolorable gNormal

This commit is contained in:
Zeno Rogue 2018-04-10 20:26:33 +02:00
parent ebda963d68
commit eaa7d0cfe7
1 changed files with 2 additions and 0 deletions

View File

@ -1073,6 +1073,8 @@ int pattern_threecolor(cell *c) {
bool pseudohept(cell *c) {
if(gp::on && gp_threecolor() == 2)
return gp::pseudohept_val(c) == 0;
if(gp::on && gp_threecolor() == 1 && (S7&1))
return gp::pseudohept_val(c) == 0;
return pattern_threecolor(c) == 0;
}