Michael Kramer wrote:
-- [ Picked text/plain from multipart/alternative ] Well no, that is the problem it seems that every hopwire I throw out, it adds the hooks to the same list :(
You said that m_hookList is global. If by global you mean a static member of CTetherHook, then there's only one instance of your hook list for every instance of CTetherHook, and all your CTetherHooks add to the same single static instance of m_hookList. What you need is a non-static hook list, so that each CTetherHook has its own hook list instance. -- Jorge "Vino" Rodriguez _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

