summaryrefslogtreecommitdiff
path: root/lib/client.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2016-11-14 13:24:59 -0500
committerJules Laplace <jules@okfoc.us>2016-11-14 13:24:59 -0500
commit2a1c5755fc76e5b660d8d608b15a4e9fb9bf7d56 (patch)
treed85c54d502e6d6ca3ddb9da773f60ac868a50cf1 /lib/client.js
parent4d6690ccc48266e7755829d32bf0440177d8c391 (diff)
logging into plinko
Diffstat (limited to 'lib/client.js')
-rw-r--r--lib/client.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/client.js b/lib/client.js
deleted file mode 100644
index 913731d..0000000
--- a/lib/client.js
+++ /dev/null
@@ -1,28 +0,0 @@
-
-var irc = require('node-irc')
-
-var client = irc.Client( irc.jollo.org, process.env.IRC_NICK, {
- userName: process.env.IRC_NAME
- realName: process.env.IRC_REALNAME,
- port: 5000,
- localAddress: null,
- debug: false,
- showErrors: false,
- autoRejoin: false,
- autoConnect: true,
- channels: ["#sally","#afxchat"],
- secure: true,
- selfSigned: false,
- certExpired: false,
- floodProtection: false,
- floodProtectionDelay: 1000,
- sasl: false,
- retryCount: 10,
- retryDelay: 2000,
- stripColors: false,
- channelPrefixes: "&#",
- messageSplit: 512,
- encoding: ''
-})
-
-module.exports = client