KF2-Server-Extension/ServerExtMut/Classes/KFGI_Access.uc

18 lines
391 B
Ucode
Raw Permalink Normal View History

2022-05-18 05:56:26 +00:00
class KFGI_Access extends Object
within KFGameInfo;
// Bypass protected modifier for these lists
function bool IsCustomZed(class<KFPawn_Monster> KFPM)
{
if (AIClassList.Find(KFPM) != INDEX_NONE) return false;
if (NonSpawnAIClassList.Find(KFPM) != INDEX_NONE) return false;
if (AIBossClassList.Find(KFPM) != INDEX_NONE) return false;
return true;
}
defaultproperties
{
2023-05-14 02:49:12 +00:00
2022-05-18 05:56:26 +00:00
}