From c28dc49d6931d3d6f4613b3ee6eea575cf24073b Mon Sep 17 00:00:00 2001 From: neon <> Date: Thu, 3 Oct 2019 14:21:10 +0200 Subject: [PATCH] derp --- _Hide/scripting/Hide.sp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_Hide/scripting/Hide.sp b/_Hide/scripting/Hide.sp index 69ac256b..17f11b07 100644 --- a/_Hide/scripting/Hide.sp +++ b/_Hide/scripting/Hide.sp @@ -146,8 +146,8 @@ public Action Command_Hide(int client, int args) return Plugin_Handled; } - g_iHideDistance[client] = iDistance^2; - ReplyToCommand(client, "[Hide] Humans within range %d are now hidden.", g_iHideDistance[client]); + ReplyToCommand(client, "[Hide] Humans within range %d are now hidden.", iDistance); + g_iHideDistance[client] = iDistance * iDistance; return Plugin_Handled; }