diff --git a/commands/misc/fm.js b/commands/misc/fm.js index 9b0d0f4..284cca3 100644 --- a/commands/misc/fm.js +++ b/commands/misc/fm.js @@ -1,5 +1,5 @@ const fmlogin = require("../../util/lastfm/fmlogin"); -const displayCurrentScrobble = require("../../util/lastfm/displayCurrentScrobble"); +const getCurrentScrobble = require("../../util/lastfm/getCurrentScrobble"); module.exports = { name: 'fm', @@ -18,7 +18,7 @@ module.exports = { break; } if(args.length < 1){ - sendText = await displayCurrentScrobble(message.author.id); + sendText = await getCurrentScrobble(message.author.id); } message.channel.send(sendText); } diff --git a/util/lastfm/displayCurrentScrobble.js b/util/lastfm/getCurrentScrobble.js similarity index 100% rename from util/lastfm/displayCurrentScrobble.js rename to util/lastfm/getCurrentScrobble.js