images: 커버 summon에 block_pos 명시 — "invalid position: null" 로그 제거

페인팅을 /summon 으로 소환하면 부착 블록 좌표가 비어(null) 있어
"Block-attached entity at invalid position: null" 로그가 소환 시·주기 검사마다
반복 출력된다(MC-252934). 1.20.5+ 의 block_pos:[I; x,y,z] 정수배열을 페인팅
자신의 좌표와 동일하게 명시해 null 구간을 없앤다. 렌더링 위치/동작은 동일.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Claude (owner)
2026-06-14 02:03:50 +09:00
parent b862a09d53
commit 657db783f1

View File

@@ -1 +1,4 @@
$summon minecraft:painting $(x) $(y) $(z) {variant:"$(namespace):$(cover)",facing:$(facing)b,Tags:["mq","mq_cover"]} # block_pos 명시 — /summon 시 부착 블록 좌표가 null 로 비어 "Block-attached entity at
# invalid position: null" 로그가 뜨는 것을 막는다(MC-252934). 1.20.5+ 는 부착 좌표를
# block_pos:[I; x,y,z] 정수배열로 저장하며, 페인팅 자신의 블록 좌표(x,y,z)와 동일하게 준다.
$summon minecraft:painting $(x) $(y) $(z) {variant:"$(namespace):$(cover)",facing:$(facing)b,block_pos:[I;$(x),$(y),$(z)],Tags:["mq","mq_cover"]}