diff options
| author | 2020-01-30 14:55:30 +0000 | |
|---|---|---|
| committer | 2020-01-30 14:55:30 +0000 | |
| commit | 5fb305781467185155a2139d3891a0e81c5eeec8 (patch) | |
| tree | e75743e69bec468fe544e9be6b838538b40f55c5 /src | |
| parent | update rainbow.py to use command spec (diff) | |
| signature | ||
bump IRCBuffer MAX_LINES to 1024
Diffstat (limited to 'src')
| -rw-r--r-- | src/IRCBuffer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCBuffer.py b/src/IRCBuffer.py index 10e7f25d..d1e0a2d2 100644 --- a/src/IRCBuffer.py +++ b/src/IRCBuffer.py @@ -1,7 +1,7 @@ import collections, dataclasses, datetime, re, typing, uuid from src import IRCBot, IRCServer, utils -MAX_LINES = 64 +MAX_LINES = 2**10 @dataclasses.dataclass class BufferLine(object): |
