Skip to content

Commit

Permalink
Merge branch 'master' into 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Citrinate committed Mar 12, 2024
2 parents eb2ed5c + 9c4b21c commit 4ccd620
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BoosterManager/BoosterManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Authors>Citrinate</Authors>
<AssemblyVersion>2.8.5</AssemblyVersion>
<AssemblyVersion>2.8.6</AssemblyVersion>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<TargetFramework>net8.0</TargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion BoosterManager/Handlers/InventoryHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ internal static async Task<string> SendItemToMultipleBots(Bot sender, List<(Bot

HashSet<Asset> itemStacks;
try {
itemStacks = await sender.ArchiWebHandler.GetInventoryAsync(appID: appID, contextID: contextID).Where(item => itemIdentifier.IsItemMatch(item)).ToHashSetAsync().ConfigureAwait(false);
itemStacks = await sender.ArchiWebHandler.GetInventoryAsync(appID: appID, contextID: contextID).Where(item => item.Tradable && itemIdentifier.IsItemMatch(item)).ToHashSetAsync().ConfigureAwait(false);
} catch (Exception e) {
sender.ArchiLogger.LogGenericException(e);
return Commands.FormatBotResponse(sender, Strings.WarningFailed);
Expand Down

0 comments on commit 4ccd620

Please sign in to comment.