From a10a3bd5576818e23d2526a419ea1464acbd46b4 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 12 Mar 2025 21:23:02 +0100 Subject: [PATCH] rogueviz::seuphorica:: fixed rarity colors --- rogueviz/seuphorica.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogueviz/seuphorica.cpp b/rogueviz/seuphorica.cpp index dd89f580..4b1ecd6c 100644 --- a/rogueviz/seuphorica.cpp +++ b/rogueviz/seuphorica.cpp @@ -406,7 +406,7 @@ void render_tile(shiftmatrix V, tile& t, cell *c, vector* origbox, int box color_t lines = 0x000000; int wide = 1; if(t.rarity == 2) lines = 0xFF4040, wide = 2; - if(t.rarity == 3) lines = 0xFFFF80, wide = 2; + if(t.rarity == 3) lines = 0xFFC040, wide = 2; if(t.rarity >= 4) lines = 0x40FF80, wide = 2; if(t.special >= sp::first_artifact) lines = 0xFFD500, wide = 2; lines = darkena(darkened(lines), 0, 0xFF);