Browse Source

💄 Change animal type color to yellow

pull/1370/head
Anders Jenbo 5 years ago
parent
commit
b53c624f59
  1. 2
      SourceX/qol.cpp

2
SourceX/qol.cpp

@ -113,7 +113,7 @@ void DrawMonsterHealthBar(CelOutputBuffer out)
}
if (sgOptions.Gameplay.bShowMonsterType) {
Uint8 borderColors[] = { 248 /*undead*/, 232 /*demon*/, 172 /*beast*/ };
Uint8 borderColors[] = { 248 /*undead*/, 232 /*demon*/, 150 /*beast*/ };
Uint8 borderColor = borderColors[mon->MData->mMonstClass];
Sint32 borderWidth = width - (border * 2);
FastDrawHorizLine(out, xPos + border, yPos + border, borderWidth, borderColor);

Loading…
Cancel
Save