1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00

TurretMissiles now have a different color

This commit is contained in:
Zeno Rogue 2024-10-01 22:17:00 +02:00
parent afadd898a2
commit 5fcccc91b7

View File

@ -165,7 +165,7 @@ void draw_game_cell(const cell_to_draw& cd) {
curvepoint(rock.pts[0].h); curvepoint(rock.pts[0].h);
queuecurve(shiftless(Id), queuecurve(shiftless(Id),
rock.type == oMissile ? missile_color : rock.type == oMissile ? missile_color :
rock.type == oTurretMissile ? missile_color : rock.type == oTurretMissile ? 0xFF8000FF :
rock.type == oParticle ? rock.col : rock.type == oParticle ? rock.col :
0x000000FF, rock.col, obj_prio[rock.type]); 0x000000FF, rock.col, obj_prio[rock.type]);
} }