diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-06-23 05:06:17 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-06-23 05:06:17 +0100 |
commit | 8d4c71f7779120298773c9232dcdaa0fa0063786 (patch) | |
tree | ba87b4e511de66161faabd7ba8ffa3efcab08974 /bobthebob.testing | |
parent | 207facbc402f5639cbcd31f079214351ef605cf2 (diff) | |
download | NorthstarMods-8d4c71f7779120298773c9232dcdaa0fa0063786.tar.gz NorthstarMods-8d4c71f7779120298773c9232dcdaa0fa0063786.zip |
lts and powerup rewrite, more gamestate changes
Diffstat (limited to 'bobthebob.testing')
-rw-r--r-- | bobthebob.testing/scripts/vscripts/ui/menu_team_titan_select.nut | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bobthebob.testing/scripts/vscripts/ui/menu_team_titan_select.nut b/bobthebob.testing/scripts/vscripts/ui/menu_team_titan_select.nut index 92bb849e..d0ee5f0f 100644 --- a/bobthebob.testing/scripts/vscripts/ui/menu_team_titan_select.nut +++ b/bobthebob.testing/scripts/vscripts/ui/menu_team_titan_select.nut @@ -309,6 +309,7 @@ void function OnTeamTitanSelectMenu_Open() var rui = Hud_GetRui( button ) RuiSetImage( rui, "buttonImage", icon ) + Hud_SetLocked( button, true ) if ( !IsTitanLoadoutAvailable( player, loadout.titanClass ) ) { @@ -357,9 +358,9 @@ void function OnTeamTitanSelectMenu_Open() RunMenuClientFunction( "ShowTTSPanel" ) if ( file.isReady ) - UI_SetPresentationType( ePresentationType.TITAN_CENTER_SELECTED ) + UI_SetPresentationType( ePresentationType.STORE_CAMO_PACKS ) else - UI_SetPresentationType( ePresentationType.TITAN_CENTER ) + UI_SetPresentationType( ePresentationType.STORE_CAMO_PACKS ) RunClientScript( "TTS_UpdateLocalPlayerTitan", loadout.setFile, loadout.primary, loadout.passive1, loadout.passive2 ) |