From 1e8bba9109119cde5a55d8844b40705cef9e4c24 Mon Sep 17 00:00:00 2001 From: Juliano Leal Goncalves Date: Fri, 11 Sep 2020 20:18:44 -0300 Subject: [PATCH] Remove blank space before ':' on monster info --- Source/monster.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/monster.cpp b/Source/monster.cpp index d2a3c0270..a64a76a53 100644 --- a/Source/monster.cpp +++ b/Source/monster.cpp @@ -4976,7 +4976,7 @@ void PrintMonstHistory(int mt) { int minHP, maxHP, res; - sprintf(tempstr, "Total kills : %i", monstkills[mt]); + sprintf(tempstr, "Total kills: %i", monstkills[mt]); AddPanelString(tempstr, TRUE); if (monstkills[mt] >= 30) { minHP = monsterdata[mt].mMinHP; @@ -4997,7 +4997,7 @@ void PrintMonstHistory(int mt) minHP = 4 * minHP + 3; maxHP = 4 * maxHP + 3; } - sprintf(tempstr, "Hit Points : %i-%i", minHP, maxHP); + sprintf(tempstr, "Hit Points: %i-%i", minHP, maxHP); AddPanelString(tempstr, TRUE); } if (monstkills[mt] >= 15) { @@ -5011,7 +5011,7 @@ void PrintMonstHistory(int mt) AddPanelString(tempstr, TRUE); } else { if (res & (RESIST_MAGIC | RESIST_FIRE | RESIST_LIGHTNING)) { - strcpy(tempstr, "Resists : "); + strcpy(tempstr, "Resists: "); if (res & RESIST_MAGIC) strcat(tempstr, "Magic "); if (res & RESIST_FIRE) @@ -5022,7 +5022,7 @@ void PrintMonstHistory(int mt) AddPanelString(tempstr, TRUE); } if (res & (IMUNE_MAGIC | IMUNE_FIRE | IMUNE_LIGHTNING)) { - strcpy(tempstr, "Immune : "); + strcpy(tempstr, "Immune: "); if (res & IMUNE_MAGIC) strcat(tempstr, "Magic "); if (res & IMUNE_FIRE)