You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
438 B

"use strict";
/*
process if bot message
AND return true if it is, and forward to bot
*/
Object.defineProperty(exports, "__esModule", { value: true });
// msg.message.content
function isBotMsg(msg, sentByMe) {
return false;
// check if bot msg
// check my ChatMembers to see if its here
// OR check my Bots if im the maker
// process it "bot_cmd"
}
exports.isBotMsg = isBotMsg;
//# sourceMappingURL=intercept.js.map