mojira.dev

Yanis48

Assigned

No issues.

Reported

MCPE-179004 Base skin "Kai" is translated "Darius" in French Fixed MC-268183 Vaults item_key checks for all components instead of only defined components Confirmed MCPE-178061 Light Gray/Light Blue Balloons are not translated correctly in French Fixed MC-265190 RENDER_THREAD_TESSELATOR field is misspelled in RenderSystem class Invalid MC-227483 root_system feature config's codec uses a wrong field Fixed MC-207768 A tree decorator is called "leave_vine", while the singular of "leaves" is "leaf" Confirmed MC-192567 "mob_effect" registry name is wrong Invalid MC-191829 Mineshaft type is still called "mesa" Confirmed MC-177530 The new minecraft:attributes registry is plural, while all the others are singular Fixed MC-174238 Leash Knot entity texture is named "lead_knot" Won't Fix MC-161772 Mushroom features of mooshrooms are rendered dark Duplicate MCL-10992 "Older updates" link at the bottom of patch notes redirects to the bug tracker Fixed MC-146248 Cut Sandstone & Cut Red Sandstone cannot be shift-clicked on the stonecutter Fixed MC-141508 "cat_morning_gift" loot table is stored in "entities" folder instead of "gameplay" Fixed MC-139843 Fossils can't be located Invalid MC-139376 Crash when putting spaces and clicking on "Done" in the jigsaw GUI Fixed MC-138654 "seconds" argument in /effect command is applied as ticks with some effects Duplicate MCL-9768 "Minecraft Wiki" link does not change depending on the launcher language Invalid MC-134832 TNT with unstable=true blockstate is ignited instead of broken in creative mode Fixed MCL-9583 "Copy" string is non translatable Fixed

Comments

It's a registry name, which can be found in the server jar (reports/registries.json)

EDIT: you need to generate the reports, with the following command:

java -cp server.jar net.minecraft.data.Main --reports

What do you mean exactly?

Mojang mappings, as this is a deobfuscated field

It's in the code actually

Doesn't seem fixed in 19w37a

Should be resolved as Invalid or Can't reproduce, not WAI. Witches do take damage in lava, they just don't get hurt because of fire resistance.

Oups I misunderstood the report. Sorry!

Why did you even create this report if it's not the case in the latest snapshot?

This issue is due to the stonecutter container checking if the ingredient item is in an immutable list when transferring slot. If it's not, shift clicking will not work.

Code involved in the issue (19w11b, Fabric-yarn mappings):

public class StonecutterContainer extends Container {
    static final ImmutableList<Item> field_17626;

    ...

    public ItemStack transferSlot(PlayerEntity playerEntity_1, int int_1) {
        ItemStack itemStack_1 = ItemStack.EMPTY;
        Slot slot_1 = (Slot)this.slotList.get(int_1);
        if (slot_1 != null && slot_1.hasStack()) {
            ItemStack itemStack_2 = slot_1.getStack();
            Item item_1 = itemStack_2.getItem();
            itemStack_1 = itemStack_2.copy();
            ...
            else if (field_17626.contains(item_1)) {
                if (!this.insertItem(itemStack_2, 0, 1, false)) {
                return ItemStack.EMPTY;
            }
            ...
        }
        return itemStack_1;
    }

    ...

    static {
        field_17626 = ImmutableList.of(Items.STONE, Items.SANDSTONE, Items.RED_SANDSTONE, Items.QUARTZ_BLOCK, Items.COBBLESTONE, Items.STONE_BRICKS, Items.BRICKS, Items.NETHER_BRICKS, Items.RED_NETHER_BRICKS, Items.PURPUR_BLOCK, Items.PRISMARINE, Items.PRISMARINE_BRICKS, new Item[]{Items.DARK_PRISMARINE, Items.ANDESITE, Items.POLISHED_ANDESITE, Items.GRANITE, Items.POLISHED_GRANITE, Items.DIORITE, Items.POLISHED_DIORITE, Items.MOSSY_STONE_BRICKS, Items.MOSSY_COBBLESTONE, Items.SMOOTH_SANDSTONE, Items.SMOOTH_RED_SANDSTONE, Items.SMOOTH_QUARTZ, Items.END_STONE, Items.END_STONE_BRICKS, Items.SMOOTH_STONE});
    }
}

It is not. Make sure you don't have any datapacks loaded that can affect stonecutter recipes

Confirmed for 19w09a

Pretty sure bells generated in villages, not villagers 😛

In creative mode, swords don't break blocks (for a while now). WAI

Translations are submitted and approved by the community, so this bug is invalid. You can upvote or downvote translations on Crowdin.

Translations are submitted and approved by the community, so this bug is invalid. You can upvote or downvote translations on Crowdin.

Toolsmith and weaponsmith villagers translations are here.