diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-03-19 23:47:51 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-03-19 23:47:51 +0100 |
commit | 216d8166aaa321a4cfb5fef3510a1ee60c7dc9de (patch) | |
tree | 931745eb9de17b05e20aa64589d4955bf6f54a54 /data/vanilla_skyblock/functions/tick.mcfunction |
initial commit
Diffstat (limited to 'data/vanilla_skyblock/functions/tick.mcfunction')
-rw-r--r-- | data/vanilla_skyblock/functions/tick.mcfunction | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/data/vanilla_skyblock/functions/tick.mcfunction b/data/vanilla_skyblock/functions/tick.mcfunction new file mode 100644 index 0000000..5e32c7a --- /dev/null +++ b/data/vanilla_skyblock/functions/tick.mcfunction @@ -0,0 +1,15 @@ +# get render distance +# for each current chunk +- render distance (and not in scoreboard) + # check for end_portal_frame + # get positions + # fill chunk with air + # re-place end_portal_frame + # set scoreboard values to 1 for processed chunk + +execute in the_nether unless score initialized_nether vanilla_skyblock_data matches 1 run function vanilla_skyblock:initialize_nether + +execute in the_nether unless score initialized_nether vanilla_skyblock_data matches 1 run tellraw @a "COOL" +execute unless score initialized_nether vanilla_skyblock_data matches 1 run tellraw @a "COOL!!" + +execute in overworld run tellraw @a "OI!!O" +execute in the_nether run tellraw @a "OI!!N" |