interim commit

This commit is contained in:
Robert Drake 2020-11-01 01:52:07 -05:00
parent fb783c293e
commit 3c9d50f09b
3 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
nbproject/
node_modules/
config/config.json

6
bot.js
View File

@ -34,3 +34,9 @@ bot.addListener("pm", function(from, message) {
}
});
bot.addListener("message", (nick, to, text, message) => {
if(!text.startsWith("*")) {
console.log("Not for me!");
return;
}
});

View File