From cc41ed666fee70d78f85c25327bd0f3605952c21 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 15 Oct 2017 23:22:09 +0200 Subject: [PATCH] guarding dogs have slightly orange eyes --- graph.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/graph.cpp b/graph.cpp index 958f9514..df05f9da 100644 --- a/graph.cpp +++ b/graph.cpp @@ -1058,8 +1058,11 @@ bool drawMonsterType(eMonster m, cell *where, const transmatrix& V, int col, dou { dynamicval dp(poly_outline); dynamicval dw(minwidth_global); - bool redeyes = m != moRunDog; - int eyes = darkena(redeyes ? 0xFF0000 : 0x202020, 0, 0xFF); + int eyecolor = 0x202020; + bool redeyes = false; + if(m == moHunterDog) eyecolor = 0xFF0000, redeyes = true; + if(m == moHunterGuard) eyecolor = 0xFF6000, redeyes = true; + int eyes = darkena(eyecolor, 0, 0xFF); if(redeyes) poly_outline = eyes, minwidth_global = 1; queuepoly(VAHEAD, shWolf1, eyes);