Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 fix outside tvscreen not always removing on /reload #253

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,15 @@ function animated_java:omegaflowey_summitflowerbed/remove/all
function animated_java:omegaflowey_summitpetalpipeleft/remove/all
function animated_java:omegaflowey_summitpetalpiperight/remove/all
function animated_java:omegaflowey_summitpetalpipetop/remove/all
$execute as $(outside_tvscreen_uuid) run function animated_java:omegaflowey_tv_screen/remove/this
# TAG_OUTSIDE_TVSCREEN_HARDCODED
execute as @e[ \
x=-123.47, y=87.25, z=33.35, \
distance=..1, \
type=minecraft:item_display, \
tag=aj.omegaflowey_tv_screen.root, \
tag=!tv_screen.boss_fight, \
tag=!tv_screen.soul, \
tag=decorative, \
tag=omega-flowey-remastered, \
limit=1 \
] run function animated_java:omegaflowey_tv_screen/remove/this
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Flowey TV screen, smiling
# TAG_OUTSIDE_TVSCREEN_HARDCODED
scoreboard players set #omegaflowey.summon.tag_variant omegaflowey.global.flag 3
execute positioned -123.47 87.25 33.35 rotated -158.2 12.52 run \
function animated_java:omegaflowey_tv_screen/summon { args: { animation: 'omegaflowey_move_slow', start_animation: true, variant: 'smiling_noglow' } }
Expand Down