From 8ff5e441c9cc1871274ace454c56b5c1e77e262f Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Tue, 19 Apr 2005 02:09:17 +0000 Subject: [PATCH] Fixed log message for SamplePlugin::ClientPutInServer --HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4026 --- sourcemm/sample_mm/SamplePlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcemm/sample_mm/SamplePlugin.cpp b/sourcemm/sample_mm/SamplePlugin.cpp index 5ec7204..e5e2285 100644 --- a/sourcemm/sample_mm/SamplePlugin.cpp +++ b/sourcemm/sample_mm/SamplePlugin.cpp @@ -56,7 +56,7 @@ void SamplePlugin::ClientDisconnect(edict_t *pEntity) void SamplePlugin::ClientPutInServer(edict_t *pEntity, char const *playername) { - META_LOG(g_PLAPI, "ClientActivate called: pEntity=%d, playername=%s", pEntity ? m_Engine->IndexOfEdict(pEntity) : 0, playername); + META_LOG(g_PLAPI, "ClientPutInServer called: pEntity=%d, playername=%s", pEntity ? m_Engine->IndexOfEdict(pEntity) : 0, playername); RETURN_META(MRES_IGNORED); }