1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-23 01:47:39 +00:00

fixed skies in the new lands

This commit is contained in:
Zeno Rogue
2020-05-16 01:06:47 +02:00
parent c0f5701a8a
commit 61e249a3af
2 changed files with 10 additions and 1 deletions

View File

@@ -164,6 +164,13 @@ void celldrawer::draw_ceiling() {
}
break;
case laFrog:
col = 0x4040FF;
if(zebra40(c) / 4 == 1) {
queuepolyat(V * zpush(cgi.SKY+1), cgi.shSun, 0xFFFF00FF, PPR::SKY);
}
break;
case laPower:
col = c->landparam ? 0xFF2010 : 0x000020;
break;