Fixed f-string

This commit is contained in:
Malasaur 2025-08-29 10:26:02 +02:00
parent 70053eb1d9
commit ad6190b46a

View file

@ -13,4 +13,4 @@ def minecraftToSignal(usr: str, msg: str):
@libsignal.onMessage(RetardsServer)
def signalToMinecraft(usr: str, msg: str):
libminecraft.sendCommand(f'tellraw @a "[{usr}] {msg.replace('"', r'\"')}"')
libminecraft.sendCommand(f'tellraw @a "[{usr}] {msg}"')