From 4128a6c17b8d9df2c55bee7c1fd202637f672aee Mon Sep 17 00:00:00 2001 From: Nick Ish Date: Sat, 17 Feb 2024 14:48:10 -0800 Subject: [PATCH] change ally attack color from blue to teal --- src/fight.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fight.cpp b/src/fight.cpp index ab549ca1..ba87fb21 100644 --- a/src/fight.cpp +++ b/src/fight.cpp @@ -1107,7 +1107,7 @@ static void append_damage_amount(char *b, const char *msg, int dam, int type) { * In comm.h, TO_ROOM is 1, TO_VICT is 2, TO_NOTVICT is 3, TO_CHAR is 4 */ const char *colors[6] = { - "", "&4", "&1", "&4", "&3", "&2", /* healing */ + "", "&6", "&1", "&6", "&3", "&2", /* healing */ }; if (damage_amounts) { if (type != TO_VICT && type != TO_NOTVICT && type != TO_CHAR && type != TO_ROOM) {