I'm happy, i think i found the cause but it was my own fault
I use a "modified" WelcomePlugin that checks the description of cars
to use /setmass based on it ( BOP management ).
Every car has a description like :
- Description="Vanwall Racing 2022 #6"
But BTCC 90s are like :
- Description="#002 NISSAN PRIMERA BTCC"
My plugin was looking for a # in the right of the string to removes #xxx.
That's what surely caused a crash of the plugin.
I'm still investigating but it looks like it's the problem.
I need to secure my code when searching for the "#xxx" to remove.
And by the way,
onFatalError 22 is probably a signal that some plugin exited "abruptly" and causing the application to stop normally without any minidump or else.
Thanks for all the help, by searching what was different in my server, i finally got it.
It was definitely on server side and on my own side.
Edit : Problem solved, i adapted my code to check # and blanks positions better and problem is gone ...