mojira.dev

Aeldrion

Assigned

No issues.

Reported

MC-267441 When a player's generic.step_height attribute is set to more than two, attempting to step atop of more than two blocks may fail if there are blocks higher up Fixed MC-257621 /data modify on the elements of an empty list adds a tag to the list Community Consensus MC-251312 Entity selectors in /say commands are no longer evaluated Fixed MC-226727 Several advancements use multiple criteria instead of the new "items" format Invalid MC-208336 'player' sub-predicate of 'entity_properties' predicate only passes if game mode is specified Fixed MC-197128 If a custom biome uses multiple configured structure features of the same type, only one of them can generate Fixed MC-183804 Clicking on a redstone ore does not trigger the "minecraft:item_used_on_block" advancement trigger Duplicate MC-183801 Several block actions do not trigger the "minecraft:item_used_on_block" advancement trigger Confirmed MC-182501 Text component formatting (e.g. italics, color, fonts) is not displayed in entity names Duplicate MC-161354 `location_check` dimension tests fail when the executing position is not loaded Fixed MC-138204 Bamboo sapling is not in the #minecraft:saplings block tag Works As Intended MC-123933 Invalid block tags prevent world from loading Awaiting Response MC-123931 Using /data merge on a structure block to change its rotation/mirror does not update the way the structure is loaded until the world is reloaded Fixed MC-123229 Levitation effect resets its amplifier to 0 when quitting and reloading a world Duplicate MC-121280 I can't get back to 1.12 or 1.12.2 after opening 17w43a Invalid MC-121278 Keybindings (e.g. Ctrl+A) are being mapped to the US keyboard layout even if you're using another layout Confirmed MC-117335 Using /function in chat returns errors regardless to the gamerules sendCommandFeedback and commandBlockOutput Duplicate MC-117151 @e does not select players after teleporting Duplicate MC-116347 Selector '@e' found nothing Cannot Reproduce MC-115982 Superflat preset makes the game crash Duplicate

Comments

item and block fields have been changed to arrays in the pre release, so criteria like consumed_item and inventory_changed need to be updated, for example:

{
  "criteria": {
    "example": {
      "trigger": "minecraft:inventory_changed",
      "conditions": {
        "items": [{
          "items": [
            "minecraft:stone_sword",
            "minecraft:iron_sword"
          ],
          "nbt": "{Enchantments: [{id: 'minecraft:sharpness'}]}"
        }]
      }
    }
  }
}

I think this is intended. For features to generate randomly within the chunk, use the minecraft:square feature decorator.
If I recall correctly, the issue with MC-194200 was that the Birch Forest and Birch Forest Hills biomes referenced the `minecraft:birch` feature directly rather than the `minecraft:trees_birch` feature which itself indirectly references the `minecraft:birch` feature with `minecraft:square` and `minecraft:count_extra` decorators.

More generally, it looks like features that belong in a certain biome are cut off when generating near the edge of a biome, because they cannot generate in neighbouring biomes. This happens for custom worldgen features in the latest snapshots as well.
It is incredibly common for end cities because they are quite big and end biomes are quite small, if you open the F3 menu you can tell that the structure is often cut along the frontier between end midlands and end highlands. I've seen it happen for end ships too (See the end ship at [-3130, 100, -1290] in seed 1888182844041881602).

From Bartosz Bok in a Discord message on the Minecraft Commands server:

For example, category in creative menu was prefixed with §l§9 (bold+blue). Apparently colors cleared styling, so that was never visible

So it seems to be intended.

I can confirm this bug also occurs while using advancements command rewards.

Which is annoying.

They do take relative coordinates. You just have to use dx, dy and dz and not x, y and z.