mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-26 00:47:00 +00:00
rosescent over chasm is now visible
This commit is contained in:
parent
b798e1a758
commit
d0bee1b335
10
graph.cpp
10
graph.cpp
@ -3693,7 +3693,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
poly_outline = OUTLINE_DEFAULT;
|
poly_outline = OUTLINE_DEFAULT;
|
||||||
|
|
||||||
if(!wmascii) {
|
if(!wmascii) {
|
||||||
|
|
||||||
// floor
|
// floor
|
||||||
@ -4632,6 +4632,14 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
|||||||
if(c->wall == waChasm) zcol = 0;
|
if(c->wall == waChasm) zcol = 0;
|
||||||
addaura(tC0(V), zcol, fd);
|
addaura(tC0(V), zcol, fd);
|
||||||
|
|
||||||
|
if(c->wall == waChasm) {
|
||||||
|
int rd = rosedist(c);
|
||||||
|
if(rd == 1)
|
||||||
|
queuepoly(V, shRoseFloor[ct6], 0x80406020);
|
||||||
|
if(rd == 2)
|
||||||
|
queuepoly(V, shRoseFloor[ct6], 0x80406040);
|
||||||
|
}
|
||||||
|
|
||||||
int ad = airdist(c);
|
int ad = airdist(c);
|
||||||
if(ad == 1 || ad == 2) {
|
if(ad == 1 || ad == 2) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user