24 lines
361 B
Ucode
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
|
|
}
|