Remove dumb thing

This commit is contained in:
Hri7566 2024-10-14 01:41:54 -04:00
parent a50af8abfe
commit f6ca90329c
1 changed files with 1 additions and 3 deletions

View File

@ -27,8 +27,6 @@ import { info } from "./general/info";
import { burger } from "./util/burger"; import { burger } from "./util/burger";
import { daily } from "./pokemon/daily"; import { daily } from "./pokemon/daily";
import { give } from "./inventory/give"; import { give } from "./inventory/give";
import { group } from "./util/permission";
// import { give } from "./inventory/give";
interface ICommandGroup { interface ICommandGroup {
id: string; id: string;
@ -73,7 +71,7 @@ commandGroups.push(pokemonGroup);
const utilGroup: ICommandGroup = { const utilGroup: ICommandGroup = {
id: "util", id: "util",
displayName: "Utility", displayName: "Utility",
commands: [data, setcolor, memory, autofish, fid, chance, group] commands: [data, setcolor, memory, autofish, fid, chance]
}; };
commandGroups.push(utilGroup); commandGroups.push(utilGroup);