On the dedicated server does not let more than 16 clients

Hey. I would like to know why the dedicated server does not allow more than 16 players? Is that a limitation?

Bump.

It might be hardcoded but if you change the C++ code you can have more. It might not be performant, but I think You only have to change one line of code. I havent tried it myself yet though

In Engine\Config\BaseGame.ini the default value is:

[/Script/Engine.GameSession]
MaxPlayers=16

To override it, you can put something like the following in your game Config\DefaultGame.ini

[/Script/Engine.GameSession]
MaxPlayers=64

Cheers!
SRombauts