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:
parent
13e0f3d077
commit
8b91404a4e
@ -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) {
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user