mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
556 B
C++
17 lines
556 B
C++
#include "FortGameSessionDedicated.h"
|
|
|
|
AFortGameSessionDedicated::AFortGameSessionDedicated() {
|
|
bEnforceCrossplayRestrictions = true;
|
|
bAllowPS4InMixedConsole = true;
|
|
HotfixCheckTimer = 1;
|
|
HotfixCheckVariance = 1;
|
|
DataAssetDirectoryUpdateCheckTimer = 1;
|
|
DataAssetDirectoryUpdateCheckVariance = 1;
|
|
ReservationAbandonmentTime = 1;
|
|
ConsoleSessionRetryWaitSeconds = 1;
|
|
ServerManifestOutputFormat = EServerManifestOutputFormat::FlatFile;
|
|
ServerManifestDestination = TEXT("127.0.0.1:7070");
|
|
IdleResetShortTimer = 1;
|
|
}
|
|
|