fixed counter bug

This commit is contained in:
array-in-a-matrix 2022-08-15 20:11:10 -04:00
parent ce82270b5b
commit 4fa0091d49

View file

@ -20,7 +20,7 @@ client.on("room.message", (roomId, event) => {
}); });
// ? send message every N messages using the training data // ? send message every N messages using the training data
if (messageCounter % 7) { if (!(messageCounter % 7)) {
client.sendText(roomId, "Hello, World!"); // TODO: exec py function to gen message str client.sendText(roomId, "Hello, World!"); // TODO: exec py function to gen message str
}; };
}); });