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:
parent
27843fc7d6
commit
ad3e70b325
1 changed files with 5 additions and 3 deletions
|
@ -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)){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue