From 389799fa4e33d54e3f1a545a96fc1ca97649c2a6 Mon Sep 17 00:00:00 2001 From: false_genesis Date: Sun, 3 Feb 2008 17:35:11 +0000 Subject: [PATCH] * fixed typo that prevented compile(?). thx loosingar! --- src/Client/DefScriptInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client/DefScriptInterface.cpp b/src/Client/DefScriptInterface.cpp index f099998..033b4ed 100644 --- a/src/Client/DefScriptInterface.cpp +++ b/src/Client/DefScriptInterface.cpp @@ -56,7 +56,7 @@ void DefScriptPackage::_InitDefScriptInterface(void) AddFunc("bbgetpackedguid",&DefScriptPackage::SCBBGetPackedGuid); AddFunc("bbputpackedguid",&DefScriptPackage::SCBBPutPackedGuid); AddFunc("gui",&DefScriptPackage::SCGui); - AddFunc("sendwho",DefScriptPackage::SCSendWho); + AddFunc("sendwho",&DefScriptPackage::SCSendWho); } DefReturnResult DefScriptPackage::SCshdn(CmdSet& Set)