Hey all 
Has anyone figured out how to use the new 'CurrentTabInventory'?
Trying to convert the following code. This makes a list of all the items in the stash
var CombinedStashItems = LokiPoe.InGameState.StashPanel.CurrentTabItems;
while (Loki.Game.LokiPoe.InGameState.StashPanel.NextTab() )
{
await Coroutine.Sleep(50);
CombinedStashItems = CombinedStashItems.Union(LokiPoe.InGameState.StashPanel.CurrentTabItems).ToList();
}
Thanks!

Has anyone figured out how to use the new 'CurrentTabInventory'?
Trying to convert the following code. This makes a list of all the items in the stash
var CombinedStashItems = LokiPoe.InGameState.StashPanel.CurrentTabItems;
while (Loki.Game.LokiPoe.InGameState.StashPanel.NextTab() )
{
await Coroutine.Sleep(50);
CombinedStashItems = CombinedStashItems.Union(LokiPoe.InGameState.StashPanel.CurrentTabItems).ToList();
}
Thanks!