diff --git a/dependencies/interfaces/icliententitylist.hpp b/dependencies/interfaces/icliententitylist.hpp index f311daf..4e01129 100644 --- a/dependencies/interfaces/icliententitylist.hpp +++ b/dependencies/interfaces/icliententitylist.hpp @@ -7,8 +7,8 @@ class i_client_entity_list { using original_fn = void*( __thiscall* )( i_client_entity_list*, int ); return ( *( original_fn** ) this ) [ 3 ]( this, index ); } - void* get_client_entity( uintptr_t handle ) { + void* get_client_entity_handle( uintptr_t handle ) { using original_fn = void*( __thiscall* )( i_client_entity_list*, uintptr_t ); return ( *( original_fn** ) this ) [ 4 ]( this, handle ); } -}; \ No newline at end of file +};