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 😛
Fixed in 19w04b
In creative mode, swords don't break blocks (for a while now). WAI
Can confirm
Translations are submitted and approved by the community, so this bug is invalid. You can upvote or downvote translations on Crowdin.
Dear Shnu, related to MC-268183