Tweaked register_impulse

This commit is contained in:
Steve Dudenhoeffer
2004-09-05 19:53:40 +00:00
parent 88e199ff10
commit 7d3d04b13d
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ static cell AMX_NATIVE_CALL register_impulse(AMX *amx, cell *params)
Impulse *p = new Impulse;
p->Check = params[1];
p->Forward = MF_RegisterSPForwardByName(amx, MF_GetAmxString(amx, params[2], 0, &len), FP_CELL, FP_DONE);
p->Forward = MF_RegisterSPForwardByName(amx, MF_GetAmxString(amx, params[2], 0, &len), FP_CELL, FP_CELL, FP_DONE);
Impulses.push_back(p);