|
From: <ha...@us...> - 2002-10-03 07:46:35
|
Update of /cvsroot/decaldev/source/DecalFilters
In directory usw-pr-cvs1:/tmp/cvs-serv19082
Modified Files:
World.cpp
Log Message:
World Sets Hook on init now.
Index: World.cpp
===================================================================
RCS file: /cvsroot/decaldev/source/DecalFilters/World.cpp,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** World.cpp 17 Sep 2002 19:39:49 -0000 1.41
--- World.cpp 3 Oct 2002 07:46:32 -0000 1.42
***************
*** 135,138 ****
--- 135,144 ----
{
_DebugLog("OnInitialize") ;
+
+ _DebugLog("\n\nLogin") ;
+ if (!m_HookIsSet) {
+ SetHook() ;
+ }
+
return S_OK;
}
***************
*** 704,711 ****
void cWorld::DoLogin(CComPtr<IMessageIterator> pMembers)
{
- _DebugLog("\n\nLogin") ;
- if (!m_HookIsSet) {
- SetHook() ;
- }
CComPtr<IMessageIterator> pItems, pItem;
long nCount, ixSlot = 0, ixPack=0 ;
--- 710,713 ----
|