From 60adce489195a4b6c8b9700c7a4a4cfba3f1dc60 Mon Sep 17 00:00:00 2001 From: 7cc5c4f330d47060 Date: Tue, 23 Jul 2024 15:50:55 -0400 Subject: [PATCH] Fix tellraw --- plugins/commandblock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commandblock.js b/plugins/commandblock.js index ba492b3..36f4d8a 100755 --- a/plugins/commandblock.js +++ b/plugins/commandblock.js @@ -98,7 +98,7 @@ module.exports = { } else { finalname = uuid } - b.ccq.push(`/tellraw ${finalname} ${JSON.stringify(message)}`) + b.ccq.push(`/minecraft:tellraw ${finalname} ${JSON.stringify(message)}`) } } }