mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-10 17:33:51 +00:00
18 lines
404 B
C++
18 lines
404 B
C++
#include "login_titanium.h"
|
|
|
|
EQ::Patches::LoginTitaniumPatch::LoginTitaniumPatch()
|
|
{
|
|
m_opcode_manager.reset(new RegularOpcodeManager());
|
|
if (!m_opcode_manager->LoadOpcodes("login_opcodes_titanium.conf")) {
|
|
m_opcode_manager.release();
|
|
}
|
|
|
|
m_signature.match_message_opcode = 0x01;
|
|
m_signature.match_message_size = 0;
|
|
m_message_size = 2;
|
|
}
|
|
|
|
EQ::Patches::LoginTitaniumPatch::~LoginTitaniumPatch()
|
|
{
|
|
}
|