aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/scripts/vscripts/mp/levels/mp_black_water_canal.nut
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.CustomServers/scripts/vscripts/mp/levels/mp_black_water_canal.nut')
-rw-r--r--Northstar.CustomServers/scripts/vscripts/mp/levels/mp_black_water_canal.nut19
1 files changed, 0 insertions, 19 deletions
diff --git a/Northstar.CustomServers/scripts/vscripts/mp/levels/mp_black_water_canal.nut b/Northstar.CustomServers/scripts/vscripts/mp/levels/mp_black_water_canal.nut
deleted file mode 100644
index 2e35417fe..000000000
--- a/Northstar.CustomServers/scripts/vscripts/mp/levels/mp_black_water_canal.nut
+++ /dev/null
@@ -1,19 +0,0 @@
-global function CodeCallback_MapInit
-
-void function CodeCallback_MapInit()
-{
- // there are some really busted titan startspawns that are on the fucking other side of the map from where they should be, so we remove them
- AddSpawnCallback( "info_spawnpoint_titan_start", TrimBadTitanStartSpawns )
-}
-
-void function TrimBadTitanStartSpawns( entity spawn )
-{
- vector comparisonOrigin
- if ( spawn.GetTeam() == TEAM_IMC )
- comparisonOrigin = < 160.625, 4748.13, -251.447 >
- else
- comparisonOrigin = < 1087.13, -4914.88, -199.969 >
-
- if ( Distance2D( spawn.GetOrigin(), comparisonOrigin ) >= 1000.0)
- spawn.Destroy()
-} \ No newline at end of file