Updated links to point to new GitHub repo name
This commit is contained in:
parent
903f5eebf0
commit
3a02efef70
5 changed files with 13 additions and 12 deletions
|
@ -25,13 +25,14 @@ head
|
||||||
}
|
}
|
||||||
body
|
body
|
||||||
article#markdown.markdown-body
|
article#markdown.markdown-body
|
||||||
h1#img-srchttpsrawgithubusercontentcomtheessemesmbot-rewritemasteresmbotpng-width64-esmbot-dev-command-list
|
h1#img-srchttpsrawgithubusercontentcomtheessemesmbotmasteresmbotpng-width64-esmbot-dev-command-list
|
||||||
img(src='https://raw.githubusercontent.com/TheEssem/esmBot-rewrite/master/esmbot.png' width='64')
|
img(src='https://raw.githubusercontent.com/TheEssem/esmBot/master/esmbot.png' width='64')
|
||||||
| esmBot Command List
|
| esmBot Command List
|
||||||
|
if dev
|
||||||
p
|
p
|
||||||
strong
|
strong
|
||||||
| You are currently using esmBot Dev! Things may change at any time without warning and there will be bugs. Many bugs. If you find one,
|
| You are currently using esmBot Dev! Things may change at any time without warning and there will be bugs. Many bugs. If you find one,
|
||||||
a(href='https://github.com/TheEssem/esmBot-rewrite/issues') report it here
|
a(href='https://github.com/TheEssem/esmBot/issues') report it here
|
||||||
| or in the esmBot Support server.
|
| or in the esmBot Support server.
|
||||||
p
|
p
|
||||||
code []
|
code []
|
||||||
|
|
|
@ -34,7 +34,7 @@ exports.run = async (message) => {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "💻 Source Code:",
|
"name": "💻 Source Code:",
|
||||||
"value": "[Click here!](https://github.com/TheEssem/esmBot-rewrite)"
|
"value": "[Click here!](https://github.com/TheEssem/esmBot)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "<:twitter:652550515372064768> Twitter:",
|
"name": "<:twitter:652550515372064768> Twitter:",
|
||||||
|
|
|
@ -52,7 +52,7 @@ module.exports = async (message) => {
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.error(error.stack);
|
logger.error(error.stack);
|
||||||
await client.createMessage(message.channel.id, "Uh oh! I ran into an error while running this command. Please report the content of the attached file here or on the esmBot Support server: <https://github.com/TheEssem/esmBot-rewrite/issues>", [{
|
await client.createMessage(message.channel.id, "Uh oh! I ran into an error while running this command. Please report the content of the attached file here or on the esmBot Support server: <https://github.com/TheEssem/esmBot/issues>", [{
|
||||||
file: Buffer.from(`Message: ${error}\n\nStack Trace: ${error.stack}`),
|
file: Buffer.from(`Message: ${error}\n\nStack Trace: ${error.stack}`),
|
||||||
name: "error.txt"
|
name: "error.txt"
|
||||||
}]);
|
}]);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# <img src="https://github.com/TheEssem/esmBot-rewrite/raw/master/esmbot.png" width="128"> esmBot
|
# <img src="https://github.com/TheEssem/esmBot/raw/master/esmbot.png" width="128"> esmBot
|
||||||
[![esmBot Support](https://discordapp.com/api/guilds/592399417676529688/embed.png)](https://discord.gg/vfFM7YT) ![GitHub license](https://img.shields.io/github/license/TheEssem/esmBot-rewrite.svg)
|
[![esmBot Support](https://discordapp.com/api/guilds/592399417676529688/embed.png)](https://discord.gg/vfFM7YT) ![GitHub license](https://img.shields.io/github/license/TheEssem/esmBot.svg)
|
||||||
|
|
||||||
|
|
||||||
esmBot is an entertainment-focused Discord bot made using [Eris](https://abal.moe/Eris/) with soundboard, utility, and image manipulation commands.
|
esmBot is an entertainment-focused Discord bot made using [Eris](https://abal.moe/Eris/) with soundboard, utility, and image manipulation commands.
|
||||||
|
|
|
@ -34,7 +34,7 @@ module.exports = async (output) => {
|
||||||
categories.soundboard.push(`<strong>${command}</strong>${params ? ` ${params}` : ""} - ${description}`);
|
categories.soundboard.push(`<strong>${command}</strong>${params ? ` ${params}` : ""} - ${description}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fs.writeFile(output, pug.renderFile("./assets/pages/help.pug", { commands: categories }), () => {
|
fs.writeFile(output, pug.renderFile("./assets/pages/help.pug", { commands: categories, dev: process.env.NODE_ENV === "development" ? true : false }), () => {
|
||||||
logger.log("The help docs have been generated.");
|
logger.log("The help docs have been generated.");
|
||||||
});
|
});
|
||||||
};
|
};
|
Loading…
Reference in a new issue