aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/_lf_maps_shared.gnut
blob: 91b178404be51c2efe013392d998da24f3ca6478 (plain)
1
2
3
4
5
6
7
8
9
global function SetupLiveFireMaps

// live fire maps don't support alot of things like intros and titans, this makes sure those things are disabled
void function SetupLiveFireMaps()
{
	Riff_ForceTitanAvailability( eTitanAvailability.Never )
	ClassicMP_SetLevelIntro( ClassicMP_DefaultNoIntro_Setup, ClassicMP_DefaultNoIntro_GetLength() )
	// ClassicMP_ForceDisableEpilogue( true ) // don't do this because evac handles this now
}