From 7470b6996dd141cbcfe87d8929d3c3ca412800a2 Mon Sep 17 00:00:00 2001 From: Jacob Mandelson Date: Wed, 22 Mar 2023 18:31:00 -0700 Subject: [PATCH] Swap the Red Troll's hair & fur colors. --- graph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph.cpp b/graph.cpp index b6f5e5f7..09403303 100644 --- a/graph.cpp +++ b/graph.cpp @@ -2399,8 +2399,8 @@ EX bool drawMonsterType(eMonster m, cell *where, const shiftmatrix& V1, color_t case moRedTroll: { const shiftmatrix VBS = VBODY * otherbodyparts(V, darkena(col, 0, 0xFF), m, footphase); ShadowV(V, cgi.shYeti); - queuepoly(VBS, cgi.shYeti, darkena(col, 0, 0xC0)); - queuepoly(VHEAD1, cgi.shPHead, darkena(0xFF8000, 0, 0XFF)); + queuepoly(VBS, cgi.shYeti, darkena(0xFF8000, 0, 0XFF)); + queuepoly(VHEAD1, cgi.shPHead, darkena(col, 0, 0xC0)); queuepoly(VHEAD, cgi.shPFace, 0xFFFFFF80 | UNTRANS); humanoid_eyes(V, 0x000000FF, darkena(col, 0, 0xFF)); return true;