[Scheduler] Fix connect protocol

This commit is contained in:
momo5502 2017-05-31 18:12:22 +02:00
parent 9f50c260c8
commit 78530a247d
2 changed files with 7 additions and 0 deletions

View File

@ -231,6 +231,11 @@ namespace Components
{
// Only skip intro here, invocation will be done later.
Utils::Hook::Set<BYTE>(0x60BECF, 0xEB);
Scheduler::OnDelay([]()
{
Command::Execute("openmenu popup_reconnectingtoparty", false);
}, 8s);
}
}
}

View File

@ -47,6 +47,8 @@ namespace Components
void Scheduler::FrameHandler()
{
Scheduler::ReadyHandler();
Scheduler::DelaySignal();
Scheduler::FrameSignal();