aboutsummaryrefslogtreecommitdiff
path: root/events/channelCreate.js
diff options
context:
space:
mode:
Diffstat (limited to 'events/channelCreate.js')
-rw-r--r--events/channelCreate.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/events/channelCreate.js b/events/channelCreate.js
new file mode 100644
index 0000000..4319e3a
--- /dev/null
+++ b/events/channelCreate.js
@@ -0,0 +1,5 @@
+module.exports = (bot, channel) => {
+ if (channel.name.startsWith('gym-')) {
+ channel.setTopic('Current Owner: *none*');
+ }
+};