diff options
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut index 3f3a05f2..da8fad36 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut @@ -78,7 +78,8 @@ void function SpawnMarvinsForRound() entity marvin = CreateMarvin( TEAM_UNASSIGNED, spawner.GetOrigin(), spawner.GetAngles() ) marvin.kv.health = 1 marvin.kv.max_health = 1 - marvin.kv.spawnflags = 516 + marvin.kv.spawnflags = 516 + marvin.kv.contents = (int(marvin.kv.contents) | CONTENTS_NOGRAPPLE) DispatchSpawn( marvin ) HideName( marvin ) } @@ -486,4 +487,4 @@ void function PodFXCleanup( entity pod ) pod.s.rightLaserEmitter.s.fxHandle.ClearParent() pod.s.rightLaserEmitter.s.fxHandle.Destroy() pod.s.rightLaserEmitter.Destroy() -}
\ No newline at end of file +} |