Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
d3827c9e5a
|
|||
330322dfa0
|
@ -29,14 +29,21 @@ public function PreBeginPlay()
|
|||||||
|
|
||||||
public function PostBeginPlay()
|
public function PostBeginPlay()
|
||||||
{
|
{
|
||||||
local KFGI_Access KFGIA;
|
|
||||||
|
|
||||||
`Log_Trace();
|
`Log_Trace();
|
||||||
|
|
||||||
Super.PostBeginPlay();
|
Super.PostBeginPlay();
|
||||||
|
|
||||||
RestoreServerActors();
|
RestoreServerActors();
|
||||||
|
|
||||||
|
SetTimer(2.0f, false, nameof(CheckStatus));
|
||||||
|
}
|
||||||
|
|
||||||
|
private function CheckStatus()
|
||||||
|
{
|
||||||
|
local KFGI_Access KFGIA;
|
||||||
|
|
||||||
|
`Log_Trace();
|
||||||
|
|
||||||
KFGIA = GetKFGIA();
|
KFGIA = GetKFGIA();
|
||||||
if (KFGIA == None)
|
if (KFGIA == None)
|
||||||
{
|
{
|
||||||
@ -318,6 +325,9 @@ private static function class<Actor> GetMutStringReplacement(String MutString)
|
|||||||
|
|
||||||
defaultproperties
|
defaultproperties
|
||||||
{
|
{
|
||||||
|
// Looks like this method is no longer needed to load UKFP
|
||||||
|
// But I'll leave this commented just in case
|
||||||
|
/*
|
||||||
CustomMutReplacements.Add({(
|
CustomMutReplacements.Add({(
|
||||||
Mutator="UnofficialKFPatch.UKFPMutator",
|
Mutator="UnofficialKFPatch.UKFPMutator",
|
||||||
Replacement="UnofficialKFPatch.UKFPReplicationInfo"
|
Replacement="UnofficialKFPatch.UKFPReplicationInfo"
|
||||||
@ -326,6 +336,7 @@ defaultproperties
|
|||||||
Mutator="UnofficialKFPatch.UKFPMutatorNW",
|
Mutator="UnofficialKFPatch.UKFPMutatorNW",
|
||||||
Replacement="UnofficialKFPatch.UKFPReplicationInfo"
|
Replacement="UnofficialKFPatch.UKFPReplicationInfo"
|
||||||
)})
|
)})
|
||||||
|
*/
|
||||||
|
|
||||||
SystemServerActors.Add("IpDrv.WebServer")
|
SystemServerActors.Add("IpDrv.WebServer")
|
||||||
}
|
}
|
Reference in New Issue
Block a user