1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-17 14:17:10 +00:00

removed no longer productive 'overgenerate', improved the down/up limits of sightrange_bonus

This commit is contained in:
Zeno Rogue
2018-04-10 20:25:56 +02:00
parent e41bc0b3b9
commit ebda963d68
8 changed files with 10 additions and 14 deletions

View File

@@ -546,7 +546,7 @@ void drawrec(const heptspin& hs, int lev, hstate s, const transmatrix& V) {
hstate s2 = transition(s, d);
if(s2 == hsError) continue;
heptspin hs2 = hs + d + wstep;
drawrec(hs2, lev-2, s2, V * heptmove[d]);
drawrec(hs2, lev-gp::dist_2(), s2, V * heptmove[d]);
}
}