1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-24 06:03:23 +00:00

sky:: draw_ceiling should not be restricted to non-sphere

This commit is contained in:
Zeno Rogue 2023-05-01 16:08:51 +02:00
parent 07c6a596e0
commit 894252caf2

View File

@ -388,7 +388,7 @@ EX void g_add_to_sky(cell *c, shiftmatrix& V, color_t col, color_t col2) {
void celldrawer::draw_ceiling() {
if(!models::is_perspective(pmodel) || sphere) return;
if(!models::is_perspective(pmodel)) return;
if(callhandlers(false, hooks_ceiling, this)) return;