From e649609b1df2d3fe7ea8b59f845f3d2bf80316e0 Mon Sep 17 00:00:00 2001 From: johns <> Date: Tue, 21 May 2002 23:43:43 +0000 Subject: [PATCH] Better attacked messages. --- src/unit/unit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unit/unit.cpp b/src/unit/unit.cpp index fe13e9409..6819a943b 100644 --- a/src/unit/unit.cpp +++ b/src/unit/unit.cpp @@ -3240,7 +3240,7 @@ global void HitUnit(Unit* attacker,Unit* target,int damage) } } NotifyPlayer(target->Player,NotifyRed,target->X,target->Y, - "%s attacked",target->Type->Ident); + "%s attacked",target->Type->Name); if( target->Player->AiEnabled ) { AiHelpMe(attacker,target); }