mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
14 lines
469 B
C++
14 lines
469 B
C++
#include "FortAthenaMutator_SpawningPolicyBase.h"
|
|
|
|
AFortAthenaMutator_SpawningPolicyBase::AFortAthenaMutator_SpawningPolicyBase() {
|
|
CachedSpecialActorIdx = 0;
|
|
SpawnFailureLockoutTime = 1;
|
|
GamePhaseToStartSpawning = EAthenaGamePhase::None;
|
|
bShouldCenterGroundCheckAtFoundLocation = true;
|
|
bShouldMaintainItemCount = true;
|
|
bAllowedDespawnToMaintainItemCount = false;
|
|
bWaitForNavmeshToBeLoaded = true;
|
|
ItemDataRemovalQueryPending = NULL;
|
|
}
|
|
|