diff options
Diffstat (limited to 'src/game/g_combat.c')
-rw-r--r-- | src/game/g_combat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 7b84ccc2..974578c3 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -208,6 +208,8 @@ void player_die( gentity_t *self, gentity_t *inflictor, gentity_t *attacker, int self->client->ps.persistant[ PERS_KILLED ]++; + G_Printf( "attacker->classname: %s\n inflictor->classname: %s\n", + attacker->classname, inflictor->classname ); if( attacker && attacker->client ) { attacker->client->lastkilled_client = self->s.number; |