1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-26 07:03:19 +00:00

Adjust Snake Nest colors so drawMonster can add them without overflowing to black

This commit is contained in:
Jesse Ruderman 2021-08-02 12:06:10 -07:00
parent b67b946126
commit 74ae7a72c5

View File

@ -3362,7 +3362,7 @@ ld wavefun(ld x) {
else return 0; */
}
EX colortable nestcolors = { 0x800000, 0x008000, 0x000080, 0x404040, 0x700070, 0x007070, 0x707000, 0x606060 };
EX colortable nestcolors = { 0x7F0000, 0x007F00, 0x00007F, 0x404040, 0x700070, 0x007070, 0x707000, 0x606060 };
color_t floorcolors[landtypes];