aboutsummaryrefslogtreecommitdiff
path: root/events
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-08-02 09:55:09 -0400
committerAlee <alee14498@gmail.com>2018-08-02 09:55:09 -0400
commit73bc4274db4e3b3683a08149d56c4ca7e5762791 (patch)
tree503fa18db0fec7628bf5b83ae85b69fdeca5af8d /events
parentb18fb14b4e1618327037deeb0582d201f7ca999a (diff)
downloadPokeBot-73bc4274db4e3b3683a08149d56c4ca7e5762791.tar.gz
PokeBot-73bc4274db4e3b3683a08149d56c4ca7e5762791.tar.bz2
PokeBot-73bc4274db4e3b3683a08149d56c4ca7e5762791.zip
Getting rid of the channelCreate module and added the bash loop script
Diffstat (limited to 'events')
-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*');
- }
-};