From a2241e85481fd692a57dcb364f780f98f035ba4c Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Wed, 16 Feb 2011 16:32:37 +0000 Subject: * (bug 4906) Notify admins of attempted votes called against immune admins --- src/game/g_cmds.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/game') diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index 82d13a13..330b5d94 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -1230,6 +1230,13 @@ void Cmd_CallVote_f( gentity_t *ent ) { trap_SendServerCommand( ent-g_entities, va( "print \"%s: admin is immune\n\"", cmd ) ); + + G_AdminMessage( NULL, va( S_COLOR_WHITE "%s" S_COLOR_YELLOW " attempted %s %s" + " on immune admin " S_COLOR_WHITE "%s" S_COLOR_YELLOW + " for: %s", + ent->client->pers.netname, cmd, vote, + g_entities[ clientNum ].client->pers.netname, + reason[ 0 ] ? reason : "no reason" ) ); return; } -- cgit