consts in config files

This commit is contained in:
Llywelwyn 2023-08-23 01:25:53 +01:00
parent c2c7e0bd52
commit 705a6bb1fb
7 changed files with 6 additions and 6 deletions

View file

@ -72,7 +72,7 @@ pub fn render_camera(ecs: &World, ctx: &mut Rltk) {
if map.visible_tiles[idx] {
draw = true;
} else {
fg = fg.mul(crate::map::NON_VISIBLE_MULTIPLIER);
fg = fg.mul(crate::config::colours::NON_VISIBLE_MULTIPLIER);
// We don't darken BG, because get_tile_renderables_for_id handles this.
}