Fix a typo

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-07-17 12:12:26 +03:00
parent 4861b93e44
commit 7fde9f42fd
Signed by untrusted user who does not match committer: ari
GPG key ID: A50D5B4B599AF8A2

View file

@ -833,7 +833,7 @@ class MessageParser:
def type_turn(cls, content: List[str]) -> Tuple[str]:
if len(content) > 2:
chatlog_entry(
f"Took turn {int(content[0]) / 1000} seconds", content[2], "TURN"
f"Took turn for {int(content[0]) / 1000} seconds", content[2], "TURN"
)
return cls.type_nop(content)