I want to disable my bot in specific server(s) and I want to put it in my command if statements. How to do it?
if (!message.content.startsWith(prefix) /* || Disabling the specific servers here */) return;
Check the guild ID
if (!message.content.startsWith(prefix) || ["guildId1", "guildId2"].includes(message.guildId)) return;