diff --git a/README.md b/README.md index aa4b99b..98beb6b 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,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); }, }; }, diff --git a/src/main.ts b/src/main.ts index 9903d66..bebd5f4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -85,6 +85,9 @@ function help(mode: "execute" | "debug") { print(`keeping-tabs debug [command]`, HIGHLIGHT); print(`alias - print all parsed aliases from notes`); print(`collections - print all item target collections from notes`); + print( + `coinmasters - print all coinmaster items, target items (and best option based on mall price) from notes` + ); break; } }