27 lines
628 B
Ucode
27 lines
628 B
Ucode
class MSKGS_GM_Objective extends KFGameInfo_Objective;
|
|
|
|
const GI = class'MSKGS_GM_GameInfo';
|
|
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
|
|
}
|