标签: javascript node.js bots discord discord.js
我的机器人有一个用户信息命令,并且正在使用message.author.presence.game来显示用户正在玩的游戏。每当他们不玩游戏时,它就会显示null。我该如何使它显示为Nothing or No game?
message.author.presence.game
null
答案 0 :(得分:2)
在显示文本时只需使用message.author.presence.game || "Nothing"。
message.author.presence.game || "Nothing"