07-25-2023, 02:38 AM
20 hours ago, Nikolee said:
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.
also each server needs to have a new bnf instance declared to work correctly even by fixing this, well that's at least my newer version of the fix has.

