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; }