xyter/src/plugins/commands/reputation/modules/give/components/noSelfReputation.ts

6 lines
198 B
TypeScript

import { User } from "discord.js";
export default async (to: User | null, from: User | null) => {
if (from?.id === to?.id) {
throw new Error("You cannot give reputation to yourself.");
}
};