departures (real)

This commit is contained in:
simio 2024-11-30 22:27:18 -03:00
parent 49432307e8
commit 3ea29c9616
2 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
logs/* logs/*
!logs/.gitkeep !logs/.gitkeep
node_modules node_modules
settings.json

View File

@ -41,8 +41,8 @@ client.addListener('registered', () => {
}) })
client.addListener('quit', (nick, reason, channels, _message) => { client.addListener('quit', (nick, reason, channels, _message) => {
for(channel in channels){ for(i in channels){
logMessage(nick, channel, "Left.") logMessage(nick, channels[i], "Left.")
} }
}) })