From afcab99a8a14b7c0c7e7498ea44dc1237520a803 Mon Sep 17 00:00:00 2001 From: DogeisCut <23178844+DogeisCut@users.noreply.github.com> Date: Tue, 30 Dec 2025 18:41:53 -0700 Subject: [PATCH 1/3] make placeholders not butt --- src/extensions/jw_proto/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/extensions/jw_proto/index.js b/src/extensions/jw_proto/index.js index 2e5d5c06d35..92379cc1aef 100644 --- a/src/extensions/jw_proto/index.js +++ b/src/extensions/jw_proto/index.js @@ -71,6 +71,7 @@ class jwProto { description: 'Label for labeling.' }), disableMonitor: true, + exemptFromNormalization: true, blockType: BlockType.COMMAND, arguments: { LABEL: { @@ -87,14 +88,15 @@ class jwProto { description: 'Label for a value.' }), disableMonitor: true, + exemptFromNormalization: true, blockType: BlockType.REPORTER, + allowDropAnywhere: true, arguments: { LABEL: { type: ArgumentType.STRING, defaultValue: "label" }, VALUE: { - type: ArgumentType.STRING, defaultValue: "value" } } From e224fdc27e7667a0d5a93cedbe0ece7f56e05e1e Mon Sep 17 00:00:00 2001 From: DogeisCut <23178844+DogeisCut@users.noreply.github.com> Date: Tue, 30 Dec 2025 18:47:22 -0700 Subject: [PATCH 2/3] oops --- src/extensions/jw_proto/index.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/extensions/jw_proto/index.js b/src/extensions/jw_proto/index.js index 92379cc1aef..ee2871a099d 100644 --- a/src/extensions/jw_proto/index.js +++ b/src/extensions/jw_proto/index.js @@ -71,7 +71,6 @@ class jwProto { description: 'Label for labeling.' }), disableMonitor: true, - exemptFromNormalization: true, blockType: BlockType.COMMAND, arguments: { LABEL: { @@ -96,9 +95,7 @@ class jwProto { type: ArgumentType.STRING, defaultValue: "label" }, - VALUE: { - defaultValue: "value" - } + VALUE: {} } }, { From fb288f42d4364b4a7559bb81a7b330647e08c48a Mon Sep 17 00:00:00 2001 From: DogeisCut <23178844+DogeisCut@users.noreply.github.com> Date: Tue, 30 Dec 2025 19:00:09 -0700 Subject: [PATCH 3/3] add the value arg back bc people are weird --- src/extensions/jw_proto/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/extensions/jw_proto/index.js b/src/extensions/jw_proto/index.js index ee2871a099d..967db610a75 100644 --- a/src/extensions/jw_proto/index.js +++ b/src/extensions/jw_proto/index.js @@ -95,7 +95,10 @@ class jwProto { type: ArgumentType.STRING, defaultValue: "label" }, - VALUE: {} + VALUE: { + type: ArgumentType.STRING, + defaultValue: "value" + } } }, {