aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-04-29 21:33:59 +0000
committerGitHub <noreply@github.com>2022-04-29 21:33:59 +0000
commitd6c7badc4b89700b2f763328a1b8e903fb4cc5c1 (patch)
treedbf24190b3f0407a22929683c69ac9358223612a /Northstar.CustomServers
parent44894dfde583f7fb3a4491b4f17893a907336d1f (diff)
downloadNorthstarMods-d6c7badc4b89700b2f763328a1b8e903fb4cc5c1.tar.gz
NorthstarMods-d6c7badc4b89700b2f763328a1b8e903fb4cc5c1.zip
Update _classic_mp_dropship_intro.gnut (#329)
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut8
1 files changed, 6 insertions, 2 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut
index 80fae3319..0555df9b8 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_classic_mp_dropship_intro.gnut
@@ -105,8 +105,12 @@ void function OnPrematchStart()
DispatchSpawn( dropship )
// have to do this after dispatch otherwise it won't work for some reason
- dropship.SetModel( $"models/vehicle/crow_dropship/crow_dropship_hero.mdl" )
- // could also use $"models/vehicle/goblin_dropship/goblin_dropship_hero.mdl", unsure which
+ // weirdly enough, tf2 actually does use different dropships for imc and militia, despite these concepts not really being a thing for players in tf2
+ // probably was just missed by devs, but keeping it in for accuracy
+ if ( dropshipSpawn.GetTeam() == TEAM_IMC )
+ dropship.SetModel( $"models/vehicle/goblin_dropship/goblin_dropship_hero.mdl" )
+ else
+ dropship.SetModel( $"models/vehicle/crow_dropship/crow_dropship_hero.mdl" )
thread PlayAnim( dropship, "dropship_classic_mp_flyin" )
}