aboutsummaryrefslogtreecommitdiff
path: root/events/channelCreate.js
diff options
context:
space:
mode:
Diffstat (limited to 'events/channelCreate.js')
-rw-r--r--events/channelCreate.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/events/channelCreate.js b/events/channelCreate.js
deleted file mode 100644
index 339a3b5..0000000
--- a/events/channelCreate.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/** **************************************
- *
- * ChannelCreate: Plugin for PokeBot that setups gyms when they are created.
- * Copyright (C) 2018 TheEdge, jtsshieh, Alee
- *
- * Licensed under the Open Software License version 3.0
- *
- * *************************************/
-
-module.exports = (bot, channel) => {
- if (channel.name.startsWith('gym-')) {
- channel.setTopic('Current Owner: *none*');
- }
-};