aboutsummaryrefslogtreecommitdiff
path: root/events/channelCreate.js
blob: 4319e3aeb827cf52c9bd796e7a33d976057c4107 (plain) (blame)
1
2
3
4
5
module.exports = (bot, channel) => {
  if (channel.name.startsWith('gym-')) {
    channel.setTopic('Current Owner: *none*');
  }
};