1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-07-28 16:32:27 +01:00

Recolor shop floors in outlands so that the inside of the shops doesn't look like grass

This commit is contained in:
Chris-plus-alphanumericgibberish 2017-11-13 14:21:18 -05:00
parent 27843fc7d6
commit ad3e70b325

View file

@ -281,9 +281,11 @@ unsigned *ospecial;
}
if(offset == S_drkroom || offset == S_litroom){
if(u.uz.dlevel < spire_level.dlevel &&
u.uz.dlevel > gatetown_level.dlevel)
color = (offset == S_litroom) ? CLR_BRIGHT_GREEN : CLR_GREEN;
else color = CLR_BROWN;
u.uz.dlevel > gatetown_level.dlevel){
if (*in_rooms(x,y,SHOPBASE)) color = (offset == S_litroom) ? CLR_BROWN : CLR_BLACK;
else color = (offset == S_litroom) ? CLR_BRIGHT_GREEN : CLR_GREEN;
}
else color = (offset == S_litroom) ? CLR_BROWN : CLR_BLACK;
}
}
else if(Is_rlyeh(&u.uz)){