1
0
Fork 0
forked from swee/MeowNex

Update sweebot.py

This commit is contained in:
Nova Cat 2024-12-22 19:21:28 -08:00
parent c357314230
commit eb28603287

View file

@ -338,7 +338,7 @@ while True:
cont = " ".join(command)
if not channel in logs:
logs[channel] = [{"nick": nick, "content": cont}]
if len(logs[channel]) > 10: logs[channel] = logs[channel][:10]
if len(logs[channel]) > 128: logs[channel] = logs[channel][:128]
#open("log-text-"+channel, "a").write(" ".join(command) + "\n")
#open("log-name-"+channel, "a").write(nick + "\n")
except: