Compare commits

...

2 commits

Author SHA1 Message Date
array-in-a-matrix 4fa0091d49 fixed counter bug 2022-08-15 20:11:10 -04:00
array-in-a-matrix ce82270b5b updated readme 2022-08-15 20:10:42 -04:00
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ Once the config file has been populated with valid data, execute the `index.js`
```sh
$ node index.js
...
<node warnings, ignore them>
<some warnings show up, ignore them>
...
Client has started!

View file

@ -20,7 +20,7 @@ client.on("room.message", (roomId, event) => {
});
// ? 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
};
});