This commit is contained in:
neon 2019-10-03 14:21:10 +02:00
parent 7083749fcf
commit c28dc49d69

View File

@ -146,8 +146,8 @@ public Action Command_Hide(int client, int args)
return Plugin_Handled; return Plugin_Handled;
} }
g_iHideDistance[client] = iDistance^2; ReplyToCommand(client, "[Hide] Humans within range %d are now hidden.", iDistance);
ReplyToCommand(client, "[Hide] Humans within range %d are now hidden.", g_iHideDistance[client]); g_iHideDistance[client] = iDistance * iDistance;
return Plugin_Handled; return Plugin_Handled;
} }