You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(members.size<100&&!doc.isPremium)returninteraction.reply({content: `DM mode is a premium feature for servers with more then 100 members. ${ClientMessages.ERR_NEED_PREMIUM}`,ephemeral: true});
22
+
if(interaction.guild!.members.cache.size<100&&!doc.isPremium)returninteraction.reply({content: `DM mode is a premium feature for servers with more then 100 members. ${ClientMessages.ERR_NEED_PREMIUM}`,ephemeral: true});
24
23
doc.dmMode=enable;
25
24
doc.save();
26
25
interaction.reply({content: `DM mode has been ${enable ? "enabled" : "disabled"}`,ephemeral: true});
0 commit comments