Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
17815f3
Fixed the aliases on 8ball.
IDeletedSystem64 Feb 1, 2022
b12e807
Create and finish purge command.
IDeletedSystem64 Feb 2, 2022
74edcff
Merge branch 'TMC-Software:v5' into v5
IDeletedSystem64 Feb 2, 2022
9da0bfb
Fix issue with it trying to reply to a non existant message.
IDeletedSystem64 Feb 3, 2022
04cdd8d
Typing is hard, Grammarly can help.
IDeletedSystem64 Feb 3, 2022
45cfd4d
Change cooldown, set to guildOnly. Fix succ. message
IDeletedSystem64 Feb 3, 2022
18fdd5d
Okay, now I think I can commit changes. (Change the cooldown, set as …
IDeletedSystem64 Feb 3, 2022
e2809a0
Update purge.js
Aisuruneko Feb 3, 2022
abccc7a
Update Dependencies
IDeletedSystem64 Feb 3, 2022
2da1ff1
Whoops, All dependencies!
IDeletedSystem64 Feb 3, 2022
1ff7b20
Whoops, all systeminformation.
IDeletedSystem64 Feb 3, 2022
5e2460c
Merge branch 'TMC-Software:v5' into v5
IDeletedSystem64 Feb 3, 2022
39b8701
Merge branch 'TMC-Software:v5' into v5
IDeletedSystem64 Feb 3, 2022
5a12c5f
Delete example json
IDeletedSystem64 Feb 3, 2022
4768f1c
Make TStoHR function not put time in bold by default
IDeletedSystem64 Feb 4, 2022
c1b22f1
Add about command (mostly finished)
IDeletedSystem64 Feb 4, 2022
013d0a4
Move dependency to app.js
IDeletedSystem64 Feb 4, 2022
a11b8da
Update dependencies one more fricken time..
IDeletedSystem64 Feb 4, 2022
e6fca8a
Remove system information
IDeletedSystem64 Feb 4, 2022
245c92b
This better be the last fucking time I modify the dependencies, You h…
IDeletedSystem64 Feb 4, 2022
634590f
Am I done modifying dependents for one day??
IDeletedSystem64 Feb 7, 2022
3bdaa98
Finish that fine fine lookin' about command
IDeletedSystem64 Feb 7, 2022
2480b54
Fix a missing reference to systeminformation
Aisuruneko Feb 7, 2022
eb1545d
Syntax error
Aisuruneko Feb 7, 2022
eb16078
Happy now, Git?
IDeletedSystem64 Feb 18, 2022
741399e
No seriously I don't know how to use Git to fix this bs so I'm manual…
IDeletedSystem64 Feb 18, 2022
649ced8
Revert "Happy now, Git?"
IDeletedSystem64 Feb 18, 2022
a8b6885
Revert "No seriously I don't know how to use Git to fix this bs so I'…
IDeletedSystem64 Feb 18, 2022
967ce6d
Merge branch 'v5' of https://github.com/TMC-Software/TheCodingBot int…
IDeletedSystem64 Feb 18, 2022
f24c986
Merge pull request #2 from IDeletedSystem64/TMC-Software-v5
IDeletedSystem64 Feb 18, 2022
9a8c15b
Fix issue where if the args weren't an user that it would get the fir…
IDeletedSystem64 Feb 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/cmds/Fun/explode.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
aliases: [],
syntax: [],
execute: async(app, message, args) => {
var target = message.mentions.users.first() || args[0],
var target = message.mentions.users.first() || args.slice(0).join(" "),
sender = message.author;
if (!target) return app.functions.msgHandler(message, { content: "You need to add something to explode!!" }, 0, true);
else if (target == sender) return app.functions.msgHandler(message, { content: "Why would you want to send a bomb to yourself???" }, 0, true);
Expand Down
2 changes: 1 addition & 1 deletion src/app/cmds/General/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ module.exports = {
}]
});
}
}
}