From a5d36566d8379860fa4b70c2a4fb4a0d3c3def3c Mon Sep 17 00:00:00 2001 From: Tokoeka Date: Tue, 30 Jan 2024 17:31:11 +0000 Subject: [PATCH] add limit to low --- README.md | 2 +- src/actions.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42998e0..4341bf3 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ All options are supported in all tabs, unless specified. They are white space se * `stockN` * (only supported by `mall`, `display`, and `closet`). Ensures `N` copies of the item are stocked in the relevant locations, keeps the rest in your inventory * `limitN` - * (only supported by `mall` and `sell`) Sets a mall limit of `N` copies per person per day + * (only supported by `mall`, `sell`, and `low`) Sets a mall limit of `N` copies per person per day * `priceN` * (only supported by `mall` and `sell`) Sets the price for selling in the mall. * ` { return { action: (item) => { - putShop(mallPrice(item), 0, amount(item, options), item); + putShop(mallPrice(item), options.limit ?? 0, amount(item, options), item); }, }; },