diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-03-20 01:35:40 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-03-20 13:25:45 +0100 |
commit | 0da9a66dc717b5b18fbba7cffa41ebd1c01f8a8a (patch) | |
tree | 1ff0575a793616ed67db949e9a1f47c71b57fff1 /data/vanilla_skyblock/functions/initialize_nether.mcfunction | |
parent | 216d8166aaa321a4cfb5fef3510a1ee60c7dc9de (diff) |
use predicate for nether check and init
Diffstat (limited to 'data/vanilla_skyblock/functions/initialize_nether.mcfunction')
-rw-r--r-- | data/vanilla_skyblock/functions/initialize_nether.mcfunction | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/vanilla_skyblock/functions/initialize_nether.mcfunction b/data/vanilla_skyblock/functions/initialize_nether.mcfunction index 4dcb5a5..5b5fe61 100644 --- a/data/vanilla_skyblock/functions/initialize_nether.mcfunction +++ b/data/vanilla_skyblock/functions/initialize_nether.mcfunction @@ -1,6 +1,8 @@ -tellraw @a "hi@nether!" +execute as @a in the_nether run setblock ~1 ~-1 0 glowstone +execute in the_nether run spawnpoint @s 5 5 5 -execute in the_nether run setblock 0 61 0 bedrock +execute as @s in the_nether run setblock ~2 ~-2 2 glowstone +# todo: get current location of nether spawn in # set flag scoreboard players set initialized_nether vanilla_skyblock_data 1 |