change directory structure and update make process

This commit is contained in:
chacha
2026-01-28 23:43:10 +00:00
parent a11be8e33d
commit 6e24cb964d
51 changed files with 7767 additions and 6638 deletions

View File

@@ -0,0 +1,16 @@
class SmartCTFServerActor expands Actor;
function PostBeginPlay()
{
if( CTFGame( Level.Game ) != None )
{
Log( "ServerActor, Spawning and adding Mutator...", 'SmartCTF' );
Level.Game.BaseMutator.AddMutator( Level.Game.Spawn( class'SmartCTF' ) );
}
Destroy();
}
defaultproperties
{
bHidden=True
}