djs-builder 0.6.14 → 0.6.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/handler/helper.js CHANGED
@@ -224,7 +224,7 @@ async function cmd_log(client, data, commandName, channelId) {
224
224
  },
225
225
  {
226
226
  name: "šŸ‘¤ User:",
227
- value: `- ${user?.tag ?? "Unknown user"} | (\`${user?.id ?? "Unknown ID"}\`)`,
227
+ value: `- ${user?.tag ?? "Unknown user"} \n- (\`${user?.id ?? "Unknown ID"}\`)`,
228
228
  inline: true,
229
229
  },
230
230
  { name: "\u200B", value: "\u200B", inline: true },
@@ -234,12 +234,12 @@ async function cmd_log(client, data, commandName, channelId) {
234
234
  fields.push(
235
235
  {
236
236
  name: "šŸ  Server:",
237
- value: `- ${data.guild.name} | (\`${data.guild.id}\`)`,
237
+ value: `- ${data.guild.name} \n- (\`${data.guild.id}\`)`,
238
238
  inline: true,
239
239
  },
240
240
  {
241
241
  name: "šŸ’¬ Channel:",
242
- value: `- ${data.channel.name} | (\`${data.channel.id}\`)`,
242
+ value: `- ${data.channel.name} \n- (\`${data.channel.id}\`)`,
243
243
  inline: true,
244
244
  },
245
245
  { name: "\u200B", value: "\u200B", inline: true },
@@ -273,7 +273,7 @@ async function cmd_log(client, data, commandName, channelId) {
273
273
 
274
274
  const embed = new EmbedBuilder()
275
275
  .setTitle(isSlash ? "šŸ“˜ Slash Command Log" : "šŸ“— Prefix Command Log")
276
- .setColor(isSlash ? "Blue" : "Blue")
276
+ .setColor(isSlash ? "Blue" : "Green")
277
277
  .addFields(...fields)
278
278
  .setThumbnail(client.user.displayAvatarURL({ dynamic: true }))
279
279
  .setAuthor({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  {
3
3
  "name": "djs-builder",
4
- "version": "0.6.14",
4
+ "version": "0.6.15",
5
5
  "description": "šŸŽ‰ Package Update! šŸ„\nNew features added:\n- `GetUser`: Easily fetch a user from **ID**, **mention**, or even from a **reply**.\n\nšŸ›  Fixes:\n- Minor bugs fixed\n- Improved stability and error handling\n\nšŸ”— Learn more on [NPM](https://www.npmjs.com/package/djs-builder)",
6
6
  "main": "handler/starter.js",
7
7
  "dependencies": {