1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-07-25 12:12:48 +00:00

mirrorcolor is now always affected by mimic color changes

This commit is contained in:
Zeno Rogue 2018-11-11 12:35:44 +01:00
parent 13e0f3d077
commit 8b91404a4e
2 changed files with 1 additions and 2 deletions

View File

@ -84,7 +84,7 @@ bool isMimic(eMonster m) {
} }
int mirrorcolor(bool mirrored) { int mirrorcolor(bool mirrored) {
return mirrored ? 0x8080FF : 0xFF80C0; return winf[mirrored ? waMirror : waCloud].color;
} }
bool isMimic(cell *c) { bool isMimic(cell *c) {

View File

@ -3014,7 +3014,6 @@ void setcolors(cell *c, color_t& wcol, color_t& fcol) {
if(isIcyWall(c)) { if(isIcyWall(c)) {
float h = HEAT(c); float h = HEAT(c);
eLand l = c->land; eLand l = c->land;
if(l == laCocytus && (!chaosmode || !wmescher)) l = laIce;
color_t colorN04 = l == laCocytus ? 0x4080FF : 0x4040FF; color_t colorN04 = l == laCocytus ? 0x4080FF : 0x4040FF;
color_t colorN10 = 0x0000FF; color_t colorN10 = 0x0000FF;