about summary refs log tree commit diff
path: root/src/game/client/components/killmessages.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-06-06 15:38:03 +0200
committerMagnus Auvinen <magnus.auvinen@gmail.com>2010-06-06 17:17:43 +0200
commit04b6abae93c809efeeb4f6b2e9d8eb80a48b1686 (patch)
treec6f04820083af4228b670e3208430a6869e70093 /src/game/client/components/killmessages.h
parenta41d930a85f31064965d89115d851518d568f175 (diff)
downloadzcatch-04b6abae93c809efeeb4f6b2e9d8eb80a48b1686.tar.gz
zcatch-04b6abae93c809efeeb4f6b2e9d8eb80a48b1686.zip
fixed kill messages showing wrong infos
Diffstat (limited to 'src/game/client/components/killmessages.h')
-rw-r--r--src/game/client/components/killmessages.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/game/client/components/killmessages.h b/src/game/client/components/killmessages.h
index 720b10ae..b4954e22 100644
--- a/src/game/client/components/killmessages.h
+++ b/src/game/client/components/killmessages.h
@@ -9,8 +9,14 @@ public:
 	struct CKillMsg
 	{
 		int m_Weapon;
-		int m_Victim;
-		int m_Killer;
+		int m_VictimID;
+		int m_VictimTeam;
+		char m_aVictimName[64];
+		CTeeRenderInfo m_VictimRenderInfo;
+		int m_KillerID;
+		int m_KillerTeam;
+		char m_aKillerName[64];
+		CTeeRenderInfo m_KillerRenderInfo;
 		int m_ModeSpecial; // for CTF, if the guy is carrying a flag for example
 		int m_Tick;
 	};