This commit is contained in:
neon 2019-10-03 14:21:10 +02:00
parent 4c49d92411
commit be027d4d5d

View File

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