use mest.land in docs and better faq wording

This commit is contained in:
Skillz
2020-08-14 15:14:40 -04:00
parent 7752bfbf98
commit 8eb4c425ba
7 changed files with 33 additions and 37 deletions

View File

@@ -12,8 +12,8 @@ Let's first start by taking an existing command and slightly modifying it to you
```ts
import { botCache } from "../../mod.ts";
import { sendMessage } from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v7/src/handlers/channel.ts";
import { botID } from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v7/src/module/client.ts";
import { sendMessage } from "https://x.nest.land/Discordeno@7.3.0/src/handlers/channel.ts";
import { botID } from "https://x.nest.land/Discordeno@7.3.0/src/module/client.ts";
botCache.commands.set("invite", {
name: "invite",
@@ -122,7 +122,7 @@ Let's make a command that will allow guild admins to give or take roles from a m
```ts
import { botCache } from "../../mod.ts";
import { sendMessage } from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v7/src/handlers/channel.ts";
import { sendMessage } from "https://x.nest.land/Discordeno@7.3.0/src/handlers/channel.ts";
import { PermissionLevels } from "../types/commands.ts";
import { createCommandAliases } from "../utils/helpers";