diff --git a/hypgraph.cpp b/hypgraph.cpp index 0e03f100..f8c6d890 100644 --- a/hypgraph.cpp +++ b/hypgraph.cpp @@ -2756,7 +2756,7 @@ EX bool do_draw(cell *c) { // do not display not fully generated cells, unless changing range allowed if(c->mpdist > 7 && !allowChangeRange()) return false; // in the Yendor Challenge, scrolling back is forbidden - if(c->cpdist > 7 && (yendor::on || isHaunted(cwt.at->land)) && !cheater && !autocheat) return false; + if(c->cpdist > get_sightrange() && (yendor::on || isHaunted(cwt.at->land)) && !cheater && !autocheat) return false; return true; }