8

I'm getting this warning in the terminal when running my bot code:

(node:6220) DeprecationWarning: Passing strings for MessageEmbed#setFooter is deprecated. Pass a sole object instead.(Use node --trace-deprecation ... to show where the warning was created)

4hm3d
  • 83
  • 1
  • 1
  • 5
  • Please provide enough code so others can better understand or reproduce the problem. – Community Jan 14 '22 at 04:08
  • You can ignore this message, it doesn't make any problem to the code, it's still working perfectly fine – JerZ Apr 16 '22 at 13:01

1 Answers1

19

D.JS v13 changes

// you used:
embed.setFooter("test")
// in discord.js v13:
embed.setFooter({
text: "test"
})
Phil Dukhov
  • 67,741
  • 15
  • 184
  • 220
cactusdev
  • 206
  • 2
  • 3