fix timestamp

This commit is contained in:
cidoku 2025-03-10 20:57:16 -03:00
parent d282dfd232
commit cd80f166da

View File

@ -3955,7 +3955,7 @@ def handle_packets(caller, total):
music = decode_ao_str(network[1])
charid = int(network[2])
t = time.localtime()
timestamp = "[%d:%.2d " % (t[3], t[4]) if not caller.parent.demo_playing else ""
timestamp = "[%d:%.2d] " % (t[3], t[4]) if not caller.parent.demo_playing else ""
if charid != -1:
try:
name = caller.parent.charlist[charid][0]