This commit is contained in:
Daniel Odendahl Jr
2018-10-03 23:01:23 +00:00
parent 4567a8c14a
commit 74d1131548
+3 -3
View File
@@ -27,8 +27,8 @@ module.exports = class DarkThemeLightThemeCommand extends Command {
}
run(msg, { type }) {
return msg.say({ files: [
path.join(__dirname, '..', '..', 'assets', 'images', 'dark-theme-light-theme', `${type}.png`)
] });
return msg.say({
files: [path.join(__dirname, '..', '..', 'assets', 'images', 'dark-theme-light-theme', `${type}.png`)]
});
}
};