Files
Project-Reboot-3.0/Project Reboot 3.0/DataChannel.cpp
2024-03-21 18:27:42 -04:00

14 lines
251 B
C++

#include "Channel.h"
#include "NetConnection.h"
int32 UChannel::IsNetReady(bool Saturate)
{
static auto NumOutRecOffset = 0x4C;
if (*(int*)(__int64(this) + NumOutRecOffset) < 255)
{
return GetConnection()->IsNetReady(Saturate);
}
return 0;
}