1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +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

@ -3812,7 +3812,6 @@ EX int ceiling_category(cell *c) {
case laDual:
case laWestWall:
case laAsteroids:
case laEclectic:
return 1;
case laPower:
@ -3843,6 +3842,8 @@ EX int ceiling_category(cell *c) {
case laBrownian:
case laHell:
case laVariant:
case laFrog:
case laWet:
return 2;
case laBarrier:
@ -3868,6 +3869,7 @@ EX int ceiling_category(cell *c) {
case laMercuryRiver:
case laMagnetic:
case laSwitch:
case laEclectic:
return 3;
case laPalace:

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;