
## [1.3.3](https://github.com/ZynerOrg/xyter/compare/v1.3.2...v1.3.3) (2022-12-13) ### Bug Fixes * add custom semrel git ([c07befe
](c07befe678
))
20 lines
1.1 KiB
JavaScript
20 lines
1.1 KiB
JavaScript
"use strict";
|
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
});
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = (interaction) => __awaiter(void 0, void 0, void 0, function* () {
|
|
if (!interaction.isCommand())
|
|
return;
|
|
const { client, commandName } = interaction;
|
|
const currentCommand = client.commands.get(commandName);
|
|
if (!currentCommand)
|
|
throw new Error(`Unknown command ${commandName}`);
|
|
yield currentCommand.execute(interaction);
|
|
});
|