Skip to content

Commit 2480b54

Browse files
authored
Fix a missing reference to systeminformation
It was a old reference and I took care of it for you. It was not referenced in the app.modules section, so this would cause issues when pushed.
1 parent 3bdaa98 commit 2480b54

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/app/cmds/General/about.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ module.exports = {
99
aliases: ["botinfo", "aboutme"],
1010
syntax: [],
1111
execute: async(app, message, args) => {
12-
const os = app.modules["os"]
13-
// Welcome to os(u)~!
14-
const si = app.modules["systeminformation"]
12+
const os = app.modules["os"]; // Welcome to os(u)~!
1513
app.functions.msgHandler(message, {
1614
embeds: [{
1715
title: app.config.system.emotes.information + ` All about your favorite bot, **${app.client.user.tag}**!`,
@@ -42,4 +40,4 @@ module.exports = {
4240
});
4341
}
4442
}
45-
43+

0 commit comments

Comments
 (0)