Skip to content

Commit

Permalink
Build: (9fd47e3) add smash option (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: Tokoeka <[email protected]>
  • Loading branch information
Tokoeka and Tokoeka committed Jan 31, 2024
1 parent 447ac55 commit a638fc2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/keeping-tabs/keeping-tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1925,7 +1925,7 @@ __webpack_require__.d(__webpack_exports__, {
;// CONCATENATED MODULE: external "kolmafia"
const external_kolmafia_namespaceObject = require("kolmafia");
;// CONCATENATED MODULE: ./src/types.ts
var ALL_TAB_TITLES = ["mall", "display", "use", "autosell", "kmail", "sell", "closet", "fuel", "collection", "low", "coinmaster"];
var ALL_TAB_TITLES = ["mall", "display", "use", "autosell", "kmail", "sell", "closet", "fuel", "smash", "collection", "low", "coinmaster"];
function isTabTitle(value) {
return ALL_TAB_TITLES.includes(value);
}
Expand Down Expand Up @@ -3035,6 +3035,11 @@ var actions = {
action: item => (0,external_kolmafia_namespaceObject.cliExecute)("asdonmartin fuel ".concat(amount(item, options), " ").concat(item))
};
},
smash: options => {
return {
action: item => (0,external_kolmafia_namespaceObject.cliExecute)("smash ".concat(amount(item, options), " ").concat(item))
};
},
collection: options => {
var kmails = new Map();
return {
Expand Down

0 comments on commit a638fc2

Please sign in to comment.