diff --git a/src/hooks.c b/src/hooks.c index 18b2c6f..3bc6258 100644 --- a/src/hooks.c +++ b/src/hooks.c @@ -3,6 +3,8 @@ #include "include/sdk.h" #include "include/globals.h" +#include "features/include/movement.h" + DECL_HOOK(CL_CreateMove); bool hooks_init(void) { @@ -12,7 +14,7 @@ bool hooks_init(void) { } void h_CL_CreateMove(float frametime, usercmd_t* cmd, int active) { - /* bhop(cmd); */ - ORIGINAL(CL_CreateMove, frametime, cmd, active); + + bhop(cmd); }