aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-06-22 12:55:32 +0100
committerGitHub <noreply@github.com>2022-06-22 12:55:32 +0100
commit0300ff5b4fb1d36b130daf44bef635f5697bca94 (patch)
treebfa77b3bc4b07d26d014c76fcf1480e4250534cd /Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut
parentffdc9584be155f5aca5952524ceb6f5cc7d30c93 (diff)
downloadNorthstarMods-0300ff5b4fb1d36b130daf44bef635f5697bca94.tar.gz
NorthstarMods-0300ff5b4fb1d36b130daf44bef635f5697bca94.zip
somewhat better marvins on wargames and deck (#323)
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut6
1 files changed, 4 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 5af013461..341493ba2 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_wargames.nut
@@ -83,10 +83,12 @@ 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.contents = (int(marvin.kv.contents) | CONTENTS_NOGRAPPLE)
+ //marvin.kv.spawnflags = 516
+ marvin.kv.contents = ( int( marvin.kv.contents ) | CONTENTS_NOGRAPPLE )
DispatchSpawn( marvin )
HideName( marvin )
+
+ thread MarvinJobThink( marvin )
}
}