Tiny fixes

This commit is contained in:
David Anderson 2005-07-10 00:45:42 +00:00
parent d270feb15f
commit 5ac71db62d
2 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ static cell AMX_NATIVE_CALL esf_is_prepunch(AMX *amx, cell *params)
return 0; return 0;
} }
static cell AMX_NATIVE_CALL esf_is_stance(AMX *amx, cell *params) static cell AMX_NATIVE_CALL esf_in_stance(AMX *amx, cell *params)
{ {
int index = params[1]; int index = params[1];
CHECKPLAYER(index); CHECKPLAYER(index);
@ -664,7 +664,7 @@ static cell AMX_NATIVE_CALL esf_is_beamjumping(AMX *amx, cell *params)
AMX_NATIVE_INFO g_AnimationNatives[] = { AMX_NATIVE_INFO g_AnimationNatives[] = {
{"esf_is_swooping", esf_is_swooping}, {"esf_is_swooping", esf_is_swooping},
{"esf_is_prepunch", esf_is_prepunch}, {"esf_is_prepunch", esf_is_prepunch},
{"esf_is_stance", esf_is_stance}, {"esf_in_stance", esf_in_stance},
{"esf_is_stunned", esf_is_stunned}, {"esf_is_stunned", esf_is_stunned},
{"esf_is_grappling", esf_is_grappling}, {"esf_is_grappling", esf_is_grappling},
{"esf_is_crushed", esf_is_crushed}, {"esf_is_crushed", esf_is_crushed},

View File

@ -83,7 +83,7 @@ static cell AMX_NATIVE_CALL esf_set_swoopspeed(AMX *amx, cell *params)
return 1; return 1;
} }
static cell AMX_NATIVE_CALL esf_set_powerlevel(AMX *amx, cell *params) static cell AMX_NATIVE_CALL esf_set_health(AMX *amx, cell *params)
{ {
int index = params[1]; int index = params[1];
CHECKPLAYER(index); CHECKPLAYER(index);
@ -147,7 +147,7 @@ AMX_NATIVE_INFO g_BaseNatives[] = {
{"esf_set_ki", esf_set_ki}, {"esf_set_ki", esf_set_ki},
{"esf_get_swoopspeed", esf_get_swoopspeed}, {"esf_get_swoopspeed", esf_get_swoopspeed},
{"esf_set_swoopspeed", esf_set_swoopspeed}, {"esf_set_swoopspeed", esf_set_swoopspeed},
{"esf_set_powerlevel", esf_set_powerlevel}, {"esf_set_health", esf_set_health},
{"esf_set_chargebar", esf_set_chargebar}, {"esf_set_chargebar", esf_set_chargebar},
{NULL, NULL}, {NULL, NULL},
}; };