Skip to content

Commit

Permalink
Merge branch 'main' into TeamSwitchBtn
Browse files Browse the repository at this point in the history
  • Loading branch information
Zanieon authored Nov 18, 2024
2 parents 32cae91 + 0528f9f commit 28f8f3c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions Northstar.Client/mod/resource/ui/menus/server_browser.menu
Original file line number Diff line number Diff line change
Expand Up @@ -2554,6 +2554,7 @@ resource/ui/menus/mods_browse.menu
xpos -17
ypos -57
zpos 90
textAlignment north

scriptID 999

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,13 @@ void function UpdateCachedLoadouts_Threaded()
// below here is just making all the menu models update properly and such

#if UI
uiGlobal.pilotSpawnLoadoutIndex = GetPersistentSpawnLoadoutIndex( GetUIPlayer(), "pilot" )
uiGlobal.titanSpawnLoadoutIndex = GetPersistentSpawnLoadoutIndex( GetUIPlayer(), "titan" )
entity UIPlayer = GetUIPlayer()

if ( !IsValid( UIPlayer ) )
return

uiGlobal.pilotSpawnLoadoutIndex = GetPersistentSpawnLoadoutIndex( UIPlayer, "pilot" )
uiGlobal.titanSpawnLoadoutIndex = GetPersistentSpawnLoadoutIndex( UIPlayer, "titan" )
#endif

#if CLIENT
Expand Down

0 comments on commit 28f8f3c

Please sign in to comment.