You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEBUG:XX:yy:>> MODE #test :+b *!*@99.99.99.99
DEBUG:XX:yy:<< :irc.fuelrats.dev 368 XX #test :End of Channel Ban List
WARNING:FIDO:fuelrats:Unknown command: [irc.local] 368 ['XX', '#test', 'End of Channel Ban List']
I do not think MODE messages can take a : before the modeline being set.
Edit: await bot.set_mode("#test", "+b", "*!*@99.99.99.99") does work. This is poorly documented, and not really a sane way to handle modelines, IMO.
The text was updated successfully, but these errors were encountered:
I feel that the signature that @kenneaal attempted to use is more intuitive than the current one. At the very least, the documentation could be a bit clearer on usage.
Attempts to set modelines on channels fail; pydle merely gets a banlist in return, probably indicating the message is misformatted.
Code:
await bot.set_mode("#test", "+b *!*@99.99.99.99")
Debug output:
I do not think MODE messages can take a : before the modeline being set.
Edit:
await bot.set_mode("#test", "+b", "*!*@99.99.99.99")
does work. This is poorly documented, and not really a sane way to handle modelines, IMO.The text was updated successfully, but these errors were encountered: