Don't fetch more items when stocking up if at the exact item count
This commit is contained in:
parent
75885e004a
commit
35cc101bd6
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0-windows</TargetFramework>
|
||||
<Version>2.10</Version>
|
||||
<Version>2.11</Version>
|
||||
<LangVersion>11.0</LangVersion>
|
||||
<Nullable>enable</Nullable>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
|
@ -178,7 +178,7 @@ public sealed partial class AutoRetainerControlPlugin : IDalamudPlugin
|
||||
? inProgress
|
||||
: 0),
|
||||
})
|
||||
.Where(x => x.InventoryCount <= x.RequestedCount)
|
||||
.Where(x => x.InventoryCount < x.RequestedCount)
|
||||
.ToList()
|
||||
.AsReadOnly();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user