[Dedicated Server] Missing SDL3.dll when it starts...

I removed the SCUE5 plugin and fixed Text3d, the error continued, I tested with an empty project, the same thing. But if I package it for the Development target instead of Shipping, everything works normally.

Are you sure you are not using some editor only module that is being cut out during shipping packing?

Did you try and isolate the text3d to only be used in the client and not the server through the pre-processor tags?

1 Like

Yes, I found that the dedicated server works normally in shipping mode, but it doesn’t show anything in the terminal log, just the message “Assertion Failed to load SDL3.dll…” after that, nothing else is shown in the log and the program keeps running, I validated this, because in my project, a settings.json file is generated after the map loads for the first time by my code.

In the end, I just needed to add these 2 lines to the file: YOUR_GAME_Server.Target.cs and rebuild it for the log on the Dedicated Server to work again, apparently something unknown caused the log to be disabled in the shipping build of the server.

BuildEnvironment = TargetBuildEnvironment.Unique;
bUseLoggingInShipping = true;