mojira.dev

AlexMCool

Assigned

No issues.

Reported

View all
MC-195052 "angle" argument in spawnpoint command doesn't use "minecraft:rotation" parser Fixed MC-190098 Structure size and offset still limited to 32 for dedicated servers Fixed MC-189738 registries.json report missing dimension-related registries Works As Intended MC-187380 Incorrect grammar in en_us translation of pack.dropConfirm Fixed MC-187379 Text for pack.incompatible.confirm.new makes no sense Fixed MC-183933 show_text tellraw hover events don't work for components that need resolving (nbt, score, selector) Fixed MC-180407 Piglin bartering is limited to dropping a single item stack from the loot table Fixed MC-159785 Cloned block contains same item in memory Fixed MC-151346 Crash while F3 menu tries to access tags while /reload-ing Fixed MC-144622 Using data modify to set the name from a block only works once Fixed

Comments

This is fixed in 20w17a (didn't check versions before it)

Fixed in 20w07a (don't know about earlier versions). They changed it to "Sunstreak"

That function doesn't work because you're constantly using the same command context for the teleportation. The whole function is run with the same context. So running this: `execute as @a at @s run function example`
example:

teleport @s ~ ~1 ~
teleport @s ~ ~1 ~
teleport @s ~ ~1 ~
teleport @s ~ ~1 ~

would only teleport the player 1 block up since they all use the same origin. To 'update' the position context, you need to use `at @s` before teleporting, so the teleport command uses the new player pos as the context.

teleport @s ~ ~1 ~
execute at @s run teleport @s ~ ~1 ~
execute at @s run teleport @s ~ ~1 ~
execute at @s run teleport @s ~ ~1 ~

so it's not impossible

Load more comments