1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

euc_in_nil has sky errors too

This commit is contained in:
Zeno Rogue 2022-12-16 01:26:28 +01:00
parent 78356114c1
commit dfbf553608

View File

@ -72,6 +72,7 @@ void compute_skyvertices(const vector<sky_item>& sky) {
if(vid.wall_height < 0 && geom3::euc_in_hyp()) return; /* just looks bad, hollow horospheres should not have sky */
if(vid.wall_height < 0 && meuclid && geom3::ggclass() == gcNIH) return; /* same */
if(among(geom3::ggclass(), gcSol, gcSolN)) return; /* errors */
if(among(geom3::ggclass(), gcNil)) return; /* errors sometimes too */
int sk = get_skybrightness();