From 9231861f870b7a89a5cd4c32834000e98e1efa25 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 19 Jan 2023 19:39:36 +0100 Subject: [PATCH] Light cleanup in movehelper_server.h --- r5dev/game/server/movehelper_server.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/r5dev/game/server/movehelper_server.h b/r5dev/game/server/movehelper_server.h index 47411f9d..c67dc2c3 100644 --- a/r5dev/game/server/movehelper_server.h +++ b/r5dev/game/server/movehelper_server.h @@ -12,8 +12,6 @@ class CMoveHelperServer : public IMoveHelper { - CBaseEntity* m_pHost; - // results, tallied on client and server, but only used by server to run SV_Impact. // we store off our velocity in the trace_t structure so that we can determine results // of shoving boxes etc. around. @@ -23,6 +21,7 @@ class CMoveHelperServer : public IMoveHelper //trace_t trace; // !TODO: Reverse CGameTrace! }; + CBaseEntity* m_pHost; CUtlVector m_TouchList; };