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:
parent
c0f5701a8a
commit
61e249a3af
@ -3812,7 +3812,6 @@ EX int ceiling_category(cell *c) {
|
|||||||
case laDual:
|
case laDual:
|
||||||
case laWestWall:
|
case laWestWall:
|
||||||
case laAsteroids:
|
case laAsteroids:
|
||||||
case laEclectic:
|
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
case laPower:
|
case laPower:
|
||||||
@ -3843,6 +3842,8 @@ EX int ceiling_category(cell *c) {
|
|||||||
case laBrownian:
|
case laBrownian:
|
||||||
case laHell:
|
case laHell:
|
||||||
case laVariant:
|
case laVariant:
|
||||||
|
case laFrog:
|
||||||
|
case laWet:
|
||||||
return 2;
|
return 2;
|
||||||
|
|
||||||
case laBarrier:
|
case laBarrier:
|
||||||
@ -3868,6 +3869,7 @@ EX int ceiling_category(cell *c) {
|
|||||||
case laMercuryRiver:
|
case laMercuryRiver:
|
||||||
case laMagnetic:
|
case laMagnetic:
|
||||||
case laSwitch:
|
case laSwitch:
|
||||||
|
case laEclectic:
|
||||||
return 3;
|
return 3;
|
||||||
|
|
||||||
case laPalace:
|
case laPalace:
|
||||||
|
7
sky.cpp
7
sky.cpp
@ -164,6 +164,13 @@ void celldrawer::draw_ceiling() {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case laFrog:
|
||||||
|
col = 0x4040FF;
|
||||||
|
if(zebra40(c) / 4 == 1) {
|
||||||
|
queuepolyat(V * zpush(cgi.SKY+1), cgi.shSun, 0xFFFF00FF, PPR::SKY);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
case laPower:
|
case laPower:
|
||||||
col = c->landparam ? 0xFF2010 : 0x000020;
|
col = c->landparam ? 0xFF2010 : 0x000020;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user