From 2c7ca33bf1f566a9c811755752267d147133a1bb Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 5 Jun 2006 19:08:01 +0000 Subject: [PATCH] fixed a bug where HandleModule() took the mangled name instead of the demangled --- amxmodx/modules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amxmodx/modules.cpp b/amxmodx/modules.cpp index 1a415064..ebe8c3b8 100755 --- a/amxmodx/modules.cpp +++ b/amxmodx/modules.cpp @@ -511,7 +511,7 @@ int CheckModules(AMX *amx, char error[128]) { if ( (err=RunLibCommand(&dec)) != LibErr_None ) { - if (!pHandler->HandleModule(buffer, (err == LibErr_NoClass))) + if (!pHandler->HandleModule(dec.param1, (err == LibErr_NoClass))) { const char *type = "Module/Library"; if (err == LibErr_NoClass)