Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Data/Script/origin/common.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ COMMON = {}
require 'origin.common_shop'
require 'origin.common_vars'
require 'origin.common_tutor'
require 'origin.menu.storage.WithdrawMenu'

--Automatically load the appropriate localization for the specified package, or defaults to english!
function COMMON.AutoLoadLocalizedStrings()
Expand Down Expand Up @@ -1029,8 +1030,8 @@ function COMMON.ShowTeamStorageMenu()
UI:StorageMenu()
UI:WaitForChoice()
elseif result == 2 then
UI:WithdrawMenu()
UI:WaitForChoice()
WithdrawMenu.run()
elseif result == 3 then
UI:ChoiceMenuYesNo(STRINGS:FormatKey('DLG_STORE_ALL_CONFIRM'), false);
UI:WaitForChoice()
Expand Down
Loading