mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 00:10:58 -05:00
Add BIGBAGPALLETS
to the search filter in pallets command
This commit is contained in:
parent
e17dd2b091
commit
a13eb3ae66
@ -101,7 +101,7 @@ export default class MP {
|
|||||||
pallets: async()=>{
|
pallets: async()=>{
|
||||||
const DSS = await fetchData(client, interaction, choiceSelector) as FSData;
|
const DSS = await fetchData(client, interaction, choiceSelector) as FSData;
|
||||||
if (!DSS) return console.log('Endpoint failed - pallets');
|
if (!DSS) return console.log('Endpoint failed - pallets');
|
||||||
const filter = DSS?.vehicles.filter(x=>x.category === 'PALLETS');
|
const filter = DSS?.vehicles.filter(x=>['PALLETS', 'BIGBAGPALLETS'].includes(x.category));
|
||||||
const rules = {
|
const rules = {
|
||||||
one: 'single pallet',
|
one: 'single pallet',
|
||||||
two: 'pallets',
|
two: 'pallets',
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import {FSData} from 'src/interfaces';
|
import {FSData} from 'src/interfaces';
|
||||||
|
|
||||||
export default function(data:FSData) {
|
export default function(data:FSData) {
|
||||||
const pallets = data.vehicles.filter(x=>x.category === 'PALLETS');
|
const pallets = data.vehicles.filter(x=>['PALLETS', 'BIGBAGPALLETS'].includes(x.category));
|
||||||
const counts = pallets.reduce((acc, name)=>{
|
const counts = pallets.reduce((acc, name)=>{
|
||||||
acc[name.name] = (acc[name.name] ?? 0) + 1;
|
acc[name.name] = (acc[name.name] ?? 0) + 1;
|
||||||
return acc;
|
return acc;
|
||||||
|
Loading…
Reference in New Issue
Block a user