From 6b0400269e2709fe97533f1e447084854b7f80b4 Mon Sep 17 00:00:00 2001 From: x3Karma Date: Thu, 20 Jan 2022 19:07:14 +0800 Subject: Fixes Marvin from being grappled --- .../mod/scripts/vscripts/mp/levels/mp_wargames.nut | 5 +++-- 1 file 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 3f3a05f2d..da8fad362 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 +} -- cgit v1.2.3