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[] =
|
||||
{
|
||||
{"ExtinguishPlayer", ExtinguishEntity},
|
||||
{"ExtinguishEntity", ExtinguishEntity},
|
||||
{"ForcePlayerSuicide", ForcePlayerSuicide},
|
||||
{"GivePlayerItem", GiveNamedItem},
|
||||
{"GetPlayerWeaponSlot", GetPlayerWeaponSlot},
|
||||
{"IgnitePlayer", IgniteEntity},
|
||||
{"IgniteEntity", IgniteEntity},
|
||||
{"RemovePlayerItem", RemovePlayerItem},
|
||||
{"TeleportPlayer", TeleportEntity},
|
||||
{"TeleportEntity", TeleportEntity},
|
||||
{"SetClientViewEntity", SetClientViewEntity},
|
||||
{"SetLightStyle", SetLightStyle},
|
||||
|
@ -283,30 +283,3 @@ native bool:GetPlayerDecalFile(client, String:hex[], maxlength);
|
||||
* @noreturn
|
||||
*/
|
||||
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