From 2b2b9e0b00ad44d210121ef409f3b125ab7a8ee1 Mon Sep 17 00:00:00 2001 From: "Claude (owner)" Date: Sun, 14 Jun 2026 02:26:40 +0900 Subject: [PATCH] =?UTF-8?q?videos:=20=EC=A0=95=EB=8B=B5=20actionbar=20?= =?UTF-8?q?=ED=95=AD=EC=83=81=20=EC=B6=9C=EB=A0=A5=20=E2=80=94=20video=20"?= =?UTF-8?q?"=20/=20=EB=AF=B8=EC=A7=80=EC=A0=95=EC=9D=B4=EB=A9=B4=20?= =?UTF-8?q?=EB=B9=88=20=EC=B6=9C=EB=A0=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit if data 게이트를 제거하고 init6 에서 매 tick answer.video 를 무조건 actionbar 로 보낸다. video 가 "" 이거나 필드가 없으면 빈 문자열이 출력돼 아무것도 안 보이고, 빈 actionbar 가 매 tick 덮어쓰므로 잔상도 자연히 사라진다. 상태 전환/정지 시의 빈 actionbar 클리어는 그대로 유지. Co-Authored-By: Claude Opus 4.7 --- music_quiz/data/mq/function/repeat/timers/init6.mcfunction | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/music_quiz/data/mq/function/repeat/timers/init6.mcfunction b/music_quiz/data/mq/function/repeat/timers/init6.mcfunction index 0fd878f..7062b2f 100644 --- a/music_quiz/data/mq/function/repeat/timers/init6.mcfunction +++ b/music_quiz/data/mq/function/repeat/timers/init6.mcfunction @@ -1,6 +1,7 @@ # 정답 공개 동안(init=6) 곡의 video URL 을 actionbar 에 흰색으로 계속 표시. -# 매 tick 재전송해 유지. video 필드가 없는 곡은 표시하지 않음. -execute if data storage mq:main answer.video run title @a actionbar [{"storage":"mq:main","nbt":"answer.video","color":"white"}] +# 매 tick 항상 재전송한다. video 가 "" 이거나 없는 곡은 빈 문자열이 그대로 출력돼 +# 아무것도 안 보이고, 매 tick 빈 actionbar 로 덮어써 잔상도 남지 않는다. +title @a actionbar [{"storage":"mq:main","nbt":"answer.video","color":"white"}] execute if score timer main matches 300 run title @a title {"text":""} # 다음 상태로 넘어가기 전 actionbar 비우기 — 안 비우면 마지막 URL 이 다음 곡(init=5)