Michael Ortmann

Results 189 comments of Michael Ortmann

Robby found, that it also affects `.channel` and `.status` showing a member count off by +1 It is a core issue, not a stats.mod issue. See also: https://pastebin.com/xSazr7Dt

here: https://github.com/eggheads/eggdrop/pull/1374/files#diff-71cbee3e3d9097207d7afa9d2c6e96f3c146aa07354b94b3ac574a243ffa15b9R1280 `splitnick(&uhost)` returns "" (empty string), because in my testcase, `uhost` is `@BotA` and doesnt contain a `'!'` char, which is, what splitnick() is looking for. and then here:...

At first i had it filtered for `*`, but then i saw remaining `: ` in function names. so, i switched to that, which excludes a superset compared to the...

> Use a Python Set instead of a list I was using a `list` instead of `set` on purpose, because thats the default return type of dir: https://docs.python.org/3/library/functions.html#dir example: ```...

> no, you are right, list is fine then, but it should still be [info commands] and [info procs] but without the ones starting with `*` but when filtering with...

bug can not easily be triggered (because i dunno how to make `gzClose()` fail, but if the code is manually modified to simulate such fail, gcc would be able to...

Regarding #1307 `purge_kicks()` is only executed when `optimize-kicks` is set to `2`: https://github.com/eggheads/eggdrop/blob/028e756076537d7199e152fec29f70db669f67ae/src/mod/server.mod/server.c#L721-L722 So, what should we do with this issue? 1. Can the bot detect if the irc server...

So far, this PR only fixes `got324()` There is probably more to do to fix all +f mode fallout, but its a beginning and can be reviewed merged as is....

We could also think about adding full / proper +f support, so the bot can set it, if there is enough interest in such new feature.