Skip to content
This repository was archived by the owner on Apr 9, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 1_20_3/data/ame_load/functions/load/all.mcfunction
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Send Debug Message
summon minecraft:marker 0 -64 0 {Tags:["ame.init"],CustomName:{text:"AME/Load",italic:0b,color:"gold",bold:1b}}
summon minecraft:marker 0 -64 0 {Tags:["ame.init"],CustomName:'{"text":"AME/Load","italic":false,"color":"gold","bold":true}'}
execute as @e[type=minecraft:marker,limit=1,tag=ame.init] run say Loading...
kill @e[type=minecraft:marker,tag=ame.init]

Expand Down Expand Up @@ -31,4 +31,4 @@ data modify storage macro:input message set value "Loaded."
data modify storage macro:input color set value "green"
function macro:log/add with storage macro:input {}

function ame_load:load/internal/finalize
function ame_load:load/internal/finalize
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ data remove storage macro:input level
data remove storage macro:input color

# Send Debug Message
summon minecraft:marker 0 -64 0 {Tags:["ame.done"],CustomName:{text:"AME/Load",italic:0b,color:"gold",bold:1b}}
summon minecraft:marker 0 -64 0 {Tags:["ame.done"],CustomName:'{"text":"AME/Load","italic":false,"color":"gold","bold":true}'}
execute as @e[type=minecraft:marker,limit=1,tag=ame.done] run say Done...
kill @e[type=minecraft:marker,tag=ame.done]
kill @e[type=minecraft:marker,tag=ame.done]
2 changes: 1 addition & 1 deletion 1_20_3/data/macro/functions/inv/cursor_item.mcfunction
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# 1.20.3 does not have a real player.cursor slot; this fallback checks the held item.
$execute as @a at @s if entity @s[nbt={SelectedItem:{tag:{wand:"$(customData)"}}}] run $(invoke)
$execute as @a at @s if entity @s[nbt={SelectedItem:{tag:$(customData)}}] run $(invoke)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$execute as @a[nbt={UUID:$(uuid)}] run $(cmd)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$execute as @a[nbt={UUID:$(uuid)}] run function $(func)
Loading