Add missing const to origin parameters (#1079)
This commit is contained in:
parent
351e406f85
commit
2a9deb6a64
@ -682,7 +682,7 @@ enum ClientRangeType
|
|||||||
* @param size Maximum size of clients array.
|
* @param size Maximum size of clients array.
|
||||||
* @return Number of client indexes written to clients array.
|
* @return Number of client indexes written to clients array.
|
||||||
*/
|
*/
|
||||||
native int GetClientsInRange(float origin[3], ClientRangeType rangeType, int[] clients, int size);
|
native int GetClientsInRange(const float origin[3], ClientRangeType rangeType, int[] clients, int size);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves the server's authentication string (SteamID).
|
* Retrieves the server's authentication string (SteamID).
|
||||||
|
@ -224,7 +224,7 @@ stock void TE_SendToClient(int client, float delay=0.0)
|
|||||||
* @param rangeType Range type to use for filtering clients.
|
* @param rangeType Range type to use for filtering clients.
|
||||||
* @param delay Delay in seconds to send the TE.
|
* @param delay Delay in seconds to send the TE.
|
||||||
*/
|
*/
|
||||||
stock void TE_SendToAllInRange(float origin[3], ClientRangeType rangeType, float delay=0.0)
|
stock void TE_SendToAllInRange(const float origin[3], ClientRangeType rangeType, float delay=0.0)
|
||||||
{
|
{
|
||||||
int[] clients = new int[MaxClients];
|
int[] clients = new int[MaxClients];
|
||||||
int total = GetClientsInRange(origin, rangeType, clients, MaxClients);
|
int total = GetClientsInRange(origin, rangeType, clients, MaxClients);
|
||||||
|
Loading…
Reference in New Issue
Block a user