This commit is contained in:
Flummi
2017-11-23 07:01:16 +01:00
parent 5ee2e01d3f
commit f613990203
5 changed files with 54 additions and 42 deletions

View File

@@ -17,7 +17,7 @@ Object.keys(data).forEach(cur => {
module.exports = bot => {
bot._trigger.set("kiss", {
call: /^(.|\/)kiss/i,
call: /^(\.|\/)kiss/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -30,7 +30,7 @@ module.exports = bot => {
});
bot._trigger.set("hug", {
call: /^(.|\/)hug/i,
call: /^(\.|\/)hug/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -43,7 +43,7 @@ module.exports = bot => {
});
bot._trigger.set("kill", {
call: /^(.|\/)kill/i,
call: /^(\.|\/)kill/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -68,7 +68,7 @@ module.exports = bot => {
});
bot._trigger.set("yiff", {
call: /^(.|\/)yiff/i,
call: /^(\.|\/)yiff/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -85,7 +85,7 @@ module.exports = bot => {
});
bot._trigger.set("bier", {
call: /^(.|\/)bier/i,
call: /^(\.|\/)bier/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -98,7 +98,7 @@ module.exports = bot => {
});
bot._trigger.set("fucken", {
call: /^(.|\/)fucken/i,
call: /^(\.|\/)fucken/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -111,7 +111,7 @@ module.exports = bot => {
});
bot._trigger.set("hack", {
call: /^(.|\/)hack/i,
call: /^(\.|\/)hack/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -124,7 +124,7 @@ module.exports = bot => {
});
bot._trigger.set("spit", {
call: /^(.|\/)spit/i,
call: /^(\.|\/)spit/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -137,7 +137,7 @@ module.exports = bot => {
});
bot._trigger.set("assume", {
call: /^(.|\/)assume/i,
call: /^(\.|\/)assume/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -150,7 +150,7 @@ module.exports = bot => {
});
bot._trigger.set("jn", {
call: /^(.|\/)jn/i,
call: /^(\.|\/)jn/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -160,7 +160,7 @@ module.exports = bot => {
});
bot._trigger.set("choose", {
call: /^(.|\/)choose .*/i,
call: /^(\.|\/)choose .*/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -204,7 +204,7 @@ module.exports = bot => {
});
bot._trigger.set("meme", {
call: /^(.|\/)meme .*/i,
call: /^(\.|\/)meme .*/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -217,7 +217,7 @@ module.exports = bot => {
});
bot._trigger.set("slap", {
call: /^(.|\/)slap/i,
call: /^(\.|\/)slap/i,
level: 0,
active: true,
clients: ["irc", "tg"],
@@ -232,7 +232,7 @@ module.exports = bot => {
});
bot._trigger.set("fw", {
call: /^(.|\/)fw .*/i,
call: /^(\.|\/)fw .*/i,
level: 0,
active: true,
clients: ["irc", "tg"],