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/initialize.mcfunction |
initial commit
Diffstat (limited to 'data/vanilla_skyblock/functions/initialize.mcfunction')
-rw-r--r-- | data/vanilla_skyblock/functions/initialize.mcfunction | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/data/vanilla_skyblock/functions/initialize.mcfunction b/data/vanilla_skyblock/functions/initialize.mcfunction new file mode 100644 index 0000000..7d36e93 --- /dev/null +++ b/data/vanilla_skyblock/functions/initialize.mcfunction @@ -0,0 +1,23 @@ +setworldspawn 0 64 0 +gamerule spawnRadius 0 + +execute in overworld run fill 4 63 -1 -1 63 1 grass_block +execute in overworld run fill 4 62 -1 -1 61 1 dirt +execute in overworld run fill 1 63 2 -1 63 4 grass_block +execute in overworld run fill 1 62 2 -1 61 4 dirt +execute in overworld run setblock 0 61 0 bedrock + +#execute in overworld run fill -1 64 4 -1 69 3 oak_log +execute in overworld run place feature oak -1 64 4 + +execute in overworld run setblock 4 64 0 chest[facing=west] +execute in overworld run item replace block 4 64 0 container.0 with ice 1 +execute in overworld run item replace block 4 64 0 container.1 with lava_bucket 1 + +# end +execute in the_end run forceload add -1 -1 1 1 +execute in the_end run setblock 0 61 0 bedrock +execute in the_end run forceload remove -1 -1 1 1 + +# set flag +scoreboard players set initialized vanilla_skyblock_data 1 |