1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 10:19:58 +00:00

Yendor/Caribbean cross appears on the boundary again

This commit is contained in:
Zeno Rogue 2018-04-23 13:21:00 +02:00
parent 70bfe718ef
commit 6f91a87ff7

View File

@ -5962,6 +5962,6 @@ cell *viewcenter() {
bool inscreenrange(cell *c) { bool inscreenrange(cell *c) {
if(sphere) return true; if(sphere) return true;
if(euclid) return celldistance(viewcenter(), c) <= get_sightrange_ambush(); if(euclid) return celldistance(viewcenter(), c) <= get_sightrange_ambush();
return heptdistance(viewcenter(), c) <= 5; return heptdistance(viewcenter(), c) <= 8;
} }