07-24-2023, 07:22 AM
This thing here is the main issue:
static bnf __instance;
bnf* bnf::instance()
{
return &__instance;
}
It causes a fatal crash, because the Server tried to allocate memory from an object which does not exists because of the declaration outside of the function body.
This was a proper declaration back then but became obsolete.

