Skip to content

Commit f205a53

Browse files
committed
updated help command
1 parent 6ddc788 commit f205a53

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/commands/help.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import Programs from "./programs";
22
import Translate from "./translate";
33
import Meme from "./meme";
44
import Security from "./totalAttacksBlocked";
5+
import ProjectIdeas from "./projectIdeas";
56
import { MessageType } from "../types/message";
67
import { MessageEmbed } from "discord.js";
78

@@ -30,6 +31,10 @@ export = {
3031
name: "!p " + Security.name,
3132
value: Security.description
3233
},
34+
{
35+
name: "!p " + ProjectIdeas.name,
36+
value: ProjectIdeas.description
37+
},
3338
{
3439
name: "!p help",
3540
value: "Displays all commands"

src/commands/projectIdeas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { MessageType } from "../types/message";
33
import { MessageEmbed } from "discord.js";
44

55
export = {
6-
name: "project Ideas",
6+
name: "project",
77
description: "Displays ideas for your next project",
88
callback(message: MessageType, args: string) {
99

0 commit comments

Comments
 (0)