From 1b5faef0970cde7c146ae78bf02437bfc87ecb40 Mon Sep 17 00:00:00 2001 From: Kyle Sanderson Date: Thu, 11 Apr 2013 03:03:29 +0100 Subject: [PATCH] Remove debug printout from PerformGravity (bug 5679, r=asherkin). --- plugins/funcommands/gravity.sp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/funcommands/gravity.sp b/plugins/funcommands/gravity.sp index 6962eaef..63c425db 100644 --- a/plugins/funcommands/gravity.sp +++ b/plugins/funcommands/gravity.sp @@ -35,10 +35,6 @@ new g_GravityTarget[MAXPLAYERS+1]; PerformGravity(client, target, Float:amount) { - new offset = FindDataMapOffs(client, "m_flGravity"); - new Float:temp = GetEntDataFloat(client, offset); - PrintToChatAll("Gravity check %f", temp); - SetEntityGravity(target, amount); LogAction(client, target, "\"%L\" set gravity on \"%L\" to %d.", client, target, amount); }