1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-12 07:16:01 +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) {
return mirrored ? 0x8080FF : 0xFF80C0;
return winf[mirrored ? waMirror : waCloud].color;
}
bool isMimic(cell *c) {