removed deprecated natives from sdktools
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401941
This commit is contained in:
parent
2583e7e69e
commit
3788c61cb9
@ -873,15 +873,12 @@ static cell_t GetServerNetStats(IPluginContext *pContext, const cell_t *params)
|
|||||||
|
|
||||||
sp_nativeinfo_t g_Natives[] =
|
sp_nativeinfo_t g_Natives[] =
|
||||||
{
|
{
|
||||||
{"ExtinguishPlayer", ExtinguishEntity},
|
|
||||||
{"ExtinguishEntity", ExtinguishEntity},
|
{"ExtinguishEntity", ExtinguishEntity},
|
||||||
{"ForcePlayerSuicide", ForcePlayerSuicide},
|
{"ForcePlayerSuicide", ForcePlayerSuicide},
|
||||||
{"GivePlayerItem", GiveNamedItem},
|
{"GivePlayerItem", GiveNamedItem},
|
||||||
{"GetPlayerWeaponSlot", GetPlayerWeaponSlot},
|
{"GetPlayerWeaponSlot", GetPlayerWeaponSlot},
|
||||||
{"IgnitePlayer", IgniteEntity},
|
|
||||||
{"IgniteEntity", IgniteEntity},
|
{"IgniteEntity", IgniteEntity},
|
||||||
{"RemovePlayerItem", RemovePlayerItem},
|
{"RemovePlayerItem", RemovePlayerItem},
|
||||||
{"TeleportPlayer", TeleportEntity},
|
|
||||||
{"TeleportEntity", TeleportEntity},
|
{"TeleportEntity", TeleportEntity},
|
||||||
{"SetClientViewEntity", SetClientViewEntity},
|
{"SetClientViewEntity", SetClientViewEntity},
|
||||||
{"SetLightStyle", SetLightStyle},
|
{"SetLightStyle", SetLightStyle},
|
||||||
|
@ -283,30 +283,3 @@ native bool:GetPlayerDecalFile(client, String:hex[], maxlength);
|
|||||||
* @noreturn
|
* @noreturn
|
||||||
*/
|
*/
|
||||||
native GetServerNetStats(&Float:in, &Float:out);
|
native GetServerNetStats(&Float:in, &Float:out);
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
#pragma deprecated Use IgniteEntity() instead
|
|
||||||
stock IgnitePlayer(client, Float:time, bool:npc=false, Float:size=0.0, bool:level=false)
|
|
||||||
{
|
|
||||||
return IgniteEntity(client, time, npc, size, level);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
#pragma deprecated Use ExtinguishEntity() instead
|
|
||||||
stock ExtinguishClient(client)
|
|
||||||
{
|
|
||||||
return ExtinguishEntity(client);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
#pragma deprecated Use TeleportEntity() instead
|
|
||||||
stock TeleportPlayer(client, const Float:origin[3], const Float:angles[3], const Float:velocity[3])
|
|
||||||
{
|
|
||||||
return TeleportEntity(client, origin, angles, velocity);
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user