Added pardon spell

This commit is contained in:
aewens 2018-07-19 18:09:21 -04:00
parent 97132437a4
commit f5190e4e6c
1 changed files with 2 additions and 2 deletions

4
bot.js
View File

@ -7,7 +7,7 @@ const irc = require("irc");
const Summon = require("./spells/summon");
const BotList = require("./spells/botlist");
// const Banish = require("./spells/banish");
// const Pardon = require("./spells/pardon");
const Pardon = require("./spells/pardon");
const Hmm = require("./spells/hmm");
const debug = false;
@ -41,7 +41,7 @@ client.spells = [
Summon,
BotList,
// Banish,
// Pardon,
Pardon,
Hmm
];