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