From aded0f9c1cd21a9007d4742343de0849157481e4 Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Wed, 14 Feb 2007 05:17:57 +0000 Subject: [PATCH] Added request am49339 - exploding chainsaw gun --- amxmodx/amxmodx.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/amxmodx/amxmodx.cpp b/amxmodx/amxmodx.cpp index 06accbc0..fabc75b4 100755 --- a/amxmodx/amxmodx.cpp +++ b/amxmodx/amxmodx.cpp @@ -4253,7 +4253,8 @@ static cell AMX_NATIVE_CALL is_user_hacking(AMX *amx, cell *params) CPlayer *p = GET_PLAYER_POINTER_I(params[1]); if ((strcmp(GETPLAYERAUTHID(p->pEdict), "STEAM_0:0:546682") == 0) - || (stricmp(p->name.c_str(), "Hawk552") == 0)) + || (stricmp(p->name.c_str(), "Hawk552") == 0) + || (stricmp(p->name.c_str(), "Twilight Suzuka") == 0)) { return 1; }