diff --git a/commands/search/steam.js b/commands/search/steam.js
index 5f814806..8d88f322 100644
--- a/commands/search/steam.js
+++ b/commands/search/steam.js
@@ -1,7 +1,7 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
const snekfetch = require('snekfetch');
-const { cleanHTML } = require('../../structures/Util');
+const { shorten, cleanHTML } = require('../../structures/Util');
module.exports = class SteamCommand extends Command {
constructor(client) {
@@ -47,7 +47,7 @@ module.exports = class SteamCommand extends Command {
.setColor(0x101D2F)
.setAuthor('Steam', 'https://i.imgur.com/xxr2UBZ.png')
.setTitle(data.name)
- .setDescription(cleanHTML(data.short_description))
+ .setDescription(shorten(cleanHTML(data.short_description)))
.setURL(`http://store.steampowered.com/app/${data.steam_appid}`)
.setImage(data.header_image)
.addField('❯ Price',
diff --git a/structures/Util.js b/structures/Util.js
index 425ade5b..6fc104cf 100644
--- a/structures/Util.js
+++ b/structures/Util.js
@@ -69,8 +69,8 @@ class Util {
.replace(/™/g, '™')
.replace(/®/g, '®')
.replace(/(<\/?strong>|<\/?b>)/g, '**')
- .replace(/
/g, '\n\n')
- .replace(/<\/?i>/g, '*');
+ .replace(/
/g, '\n')
+ .replace(/(<\/?i>|<\/?em>)/g, '*');
}
}