rott/kf_sources/HideMut/Classes/HideShopVolume.uc
2026-07-14 20:27:09 +07:00

24 lines
361 B
Ucode

class HideShopVolume extends ShopVolume;
/*
simulated function postBeginPlay()
{
super.postBeginPlay();
telList[0] = spawn(class'HideTeleporter', , , location);
bHasTeles = true;
}
simulated function destroyed()
{
telList[0].destroyed();
super.destroyed();
}
*/
defaultproperties
{
bStatic=False
bNoDelete=False
}