From 62f21ea05822e791932a043afac07812bf2c659e Mon Sep 17 00:00:00 2001 From: Juice <5415811+etojuice@users.noreply.github.com> Date: Mon, 11 Dec 2023 09:04:56 +0300 Subject: [PATCH] S2 Sample: fix Hook_ClientPutInServer message formatting --- samples/s2_sample_mm/sample_mm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/s2_sample_mm/sample_mm.cpp b/samples/s2_sample_mm/sample_mm.cpp index f8e6240..d842a34 100644 --- a/samples/s2_sample_mm/sample_mm.cpp +++ b/samples/s2_sample_mm/sample_mm.cpp @@ -142,7 +142,7 @@ bool SamplePlugin::Hook_ClientConnect( CPlayerSlot slot, const char *pszName, ui void SamplePlugin::Hook_ClientPutInServer( CPlayerSlot slot, char const *pszName, int type, uint64 xuid ) { - META_CONPRINTF( "Hook_ClientPutInServer(%d, \"%s\", %d, %d, %d)\n", slot, pszName, type, xuid ); + META_CONPRINTF( "Hook_ClientPutInServer(%d, \"%s\", %d, %d)\n", slot, pszName, type, xuid ); } void SamplePlugin::Hook_ClientDisconnect( CPlayerSlot slot, ENetworkDisconnectionReason reason, const char *pszName, uint64 xuid, const char *pszNetworkID )