diff options
| -rw-r--r-- | commands/vainsocial/guild_create.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/commands/vainsocial/guild_create.js b/commands/vainsocial/guild_create.js index e742609..a8caa6a 100644 --- a/commands/vainsocial/guild_create.js +++ b/commands/vainsocial/guild_create.js @@ -49,6 +49,11 @@ Create a Guild with your VainSocial profile as leader. async run(msg, args) { util.trackAction(msg, "vainsocial-guild-create"); const guildCreateView = new GuildCreateView(msg, msg.author.id); + if (msg.guild.id != 283790513998659585) + return await guildCreateView.error(oneLine` +Guilds creation is currently running in closed beta. +If you want to participate, join our development Discord: https://discord.gg/txTchJY +`); try { await api.post("/guild", { shard_id: args.region, |
