I am trying to create an embed for a discord bot using node.js. I want the embed to have 4 inlined fields so that there effectively are 4 columns with and an arbitrary number of rows in each column. When i use the following code:
var embed = new Discord.MessageEmbed()
.addFields(
{ name: "col1", value: 'test1', inline: true},
{ name: "col2", value: 'test2', inline: true},
{ name: "col3", value: 'test3', inline: true},
{ name: "col4", value: 'test4', inline: true},
)
it outputs this: Output
As you can see, the fourth column is automatically put in another line instead of in another column. So my question is: is it possible to avoid this, and if so, how?