1
0
Fork 0

Merge branch 'master' of cybre.tech:chr/matrix-appservice-minecraft

This commit is contained in:
khr 2020-04-03 08:39:01 +02:00
commit 16aeab15cf
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import argparse
import logging
import json
import re
import subprocess
import threading
@ -82,7 +83,9 @@ def relay_queue_input(
),
"insertion": "/tellraw @p %s",
}
command = "/tellraw @a {}\n".format(tellraw_params)
command = "/tellraw @a {}\n".format(
json.dumps(tellraw_params)
)
log.debug("forwarding to process: {!r}".format(command))
process.send(command)
else: