diff --git a/Patches/MultiSelectPatches.cs b/Patches/MultiSelectPatches.cs index 93080c3..9603996 100644 --- a/Patches/MultiSelectPatches.cs +++ b/Patches/MultiSelectPatches.cs @@ -301,11 +301,11 @@ public static class MultiSelectPatches if (fleaPrice.HasValue) { var req = new FleaRequirement { - count = (int)(fleaPrice.Value * 1.4), + count = (int)(fleaPrice.Value * item.StackObjectsCount * 1.4), _tpl = "5449016a4bdc2d6f028b456f" }; Console.WriteLine("Selling " + item.Name + " for " + req.count + " roubl"); - Session.RagFair.AddOffer(false, [item.Id], [req], null); + Session.RagFair.AddOffer(true, [item.Id], [req], null); } } }