aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut
diff options
context:
space:
mode:
authorTristan Kennedy <tristan@taskinoz.com>2022-03-27 13:22:11 +1100
committerBarichello <artur@barichello.me>2022-03-28 22:05:49 -0300
commit6dfe2856e8c4b9c533f0c380abbfd4b6fada3518 (patch)
tree1db43d2023ec29645b32c71ede069867407d27b4 /Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut
parent464825cb304b070fb0d497f47a3e8a8d831d5248 (diff)
downloadNorthstarMods-6dfe2856e8c4b9c533f0c380abbfd4b6fada3518.tar.gz
NorthstarMods-6dfe2856e8c4b9c533f0c380abbfd4b6fada3518.zip
Restored Triple Threat Titan gun
Diffstat (limited to 'Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut')
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut5
1 files changed, 3 insertions, 2 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut b/Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut
index d5af4cde8..848a4b865 100644
--- a/Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut
+++ b/Northstar.Custom/mod/scripts/vscripts/sh_northstar_custom_precache.gnut
@@ -4,9 +4,10 @@ global function NorthstarCustomPrecache
void function NorthstarCustomPrecache()
{
PrecacheWeapon( "mp_weapon_peacekraber" )
+ PrecacheWeapon( "mp_titanweapon_triplethreat" )
PrecacheWeapon( "melee_pilot_kunai" )
-
+
// create kunai damage source so game won't crash when we hit smth with it
// just using the default melee one, easier than making a new one
getconsttable()[ "eDamageSourceId" ][ "melee_pilot_kunai" ] <- eDamageSourceId.melee_pilot_emptyhanded
-} \ No newline at end of file
+}