mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
16 lines
502 B
C++
16 lines
502 B
C++
#include "FortGameModeOutpost.h"
|
|
|
|
bool AFortGameModeOutpost::DoesOutpostStatusAllowMissionStart() const {
|
|
return false;
|
|
}
|
|
|
|
AFortGameModeOutpost::AFortGameModeOutpost() {
|
|
bSavePlayerBuiltStructuresAtAllTimes = false;
|
|
MinTotalContinuousOneHitResourcesDistributedForForcedSave = 0;
|
|
MaxContinuousOneHitResourcesDistributedBeforeForcedSave = 0;
|
|
bEnableLargeScaleDisassemblyForcedSaves = true;
|
|
bEnableUnsupportedStructureDisassembly = false;
|
|
bCheckNavMeshAvailability = false;
|
|
}
|
|
|