This commit is contained in:
Daniel Odendahl Jr
2017-06-25 14:21:00 +00:00
parent 36ab4d8b25
commit 56fb6e04d2
5 changed files with 1 additions and 39 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ module.exports = class UrbanCommand extends Command {
.setTitle(body.list[0].word)
.setDescription(body.list[0].definition.substr(0, 2000))
.addField(' Example',
body.list[0].example.substr(0, 2000) || 'None');
body.list[0].example.substr(0, 1024) || 'None');
return msg.embed(embed);
}
};