2022-08-01 11:09:38 +00:00
|
|
|
class MSKGS_GM_Objective extends KFGameInfo_Objective;
|
|
|
|
|
2022-08-11 04:34:47 +00:00
|
|
|
const GI = class'MSKGS_GameInfo';
|
2022-08-01 11:09:38 +00:00
|
|
|
const GIC = "KFGameContent.KFGameInfo_Objective";
|
|
|
|
|
|
|
|
var public MSKGSMut Mut;
|
|
|
|
|
|
|
|
simulated function ExileServerUsingKickBan()
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function UpdateGameSettings()
|
|
|
|
{
|
|
|
|
GI.static.UpdateGameSettings(Self, GIC, Mut);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function DistributeMoneyAndXP(class<KFPawn_Monster> MonsterClass, const out array<DamageInfo> DamageHistory, Controller Killer)
|
|
|
|
{
|
|
|
|
Super.DistributeMoneyAndXP(GI.static.PickProxyZed(MonsterClass, Mut), DamageHistory, Killer);
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultproperties
|
|
|
|
{
|
|
|
|
bIsCustomGame = false
|
|
|
|
}
|