Skip to content

Commit

Permalink
Summon new interactionentity to block snow layer trapdoor (0.13.15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bavadin authored Dec 18, 2024
1 parent 9950b36 commit 9781aaa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ kill @e[type=minecraft:interaction,tag=water_blocker]
kill @e[type=minecraft:interaction,tag=lava_blocker]
kill @e[type=minecraft:interaction,tag=parrot_blocker]
kill @e[type=minecraft:interaction,tag=dropper_blocker]
kill @e[type=minecraft:interaction,tag=ceiling_blocker]
kill @e[type=minecraft:interaction,tag=trapdoor_blocker]

schedule function do2:dungeon_setup/summon/summon_others 3t append
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,11 @@ summon minecraft:interaction -576.50 17.81 2010.50 {width: 1.002f, height: 0.188
summon minecraft:interaction -573.50 16.00 2014.50 {width: 1.0f, height: 1.0f, Tags:["dropper_blocker"]}

# Prevent players from interacting with the trapdoors in the ceiling of the bottom floor L3 storage room
summon minecraft:interaction -642.00 -12.20 1889.00 {width: 2.0f, height: 0.2f, Tags:["trapdoor_blocker"]}
summon minecraft:interaction -639.50 -12.20 1889.50 {width: 3.0f, height: 0.2f, Tags:["trapdoor_blocker"]}
summon minecraft:interaction -642.00 -12.20 1889.00 {width: 2.0f, height: 0.2f, Tags:["ceiling_blocker"]}
summon minecraft:interaction -639.50 -12.20 1889.50 {width: 3.0f, height: 0.2f, Tags:["ceiling_blocker"]}

# Prevent players from interacting with the trapdoor in the foreman's office under snow layers
summon minecraft:interaction -582.5 -3.19 1922.5 {width: 1.002f, height: 0.188f, Tags:["trapdoor_blocker"]}

# TangoCam (just in case)
execute unless entity @e[type=minecraft:player,name=tangocam] unless entity @e[type=minecraft:player,name=TangoCam] run function do2:dungeon_setup/summon/summon_tangocam
4 changes: 2 additions & 2 deletions Brilliance Datapack/data/do2/functions/version.mcfunction
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# DATAPACK VERSION NUMBER: 0.13.14
# DATAPACK VERSION NUMBER: 0.13.15

tellraw @s ["",{"text":"The §o§n§aBrilliance Datapack§r's version is: [§b0.13.14§r] Check latest version "},{"text":"§o§b§nhere§r","clickEvent":{"action":"open_url","value":"https://github.com/trackedout/Brilliance/blob/main/Brilliance%20Datapack/data/do2/functions/version.mcfunction"}},{"text":"."}]
tellraw @s ["",{"text":"The §o§n§aBrilliance Datapack§r's version is: [§b0.13.15§r] Check latest version "},{"text":"§o§b§nhere§r","clickEvent":{"action":"open_url","value":"https://github.com/trackedout/Brilliance/blob/main/Brilliance%20Datapack/data/do2/functions/version.mcfunction"}},{"text":"."}]

0 comments on commit 9781aaa

Please sign in to comment.