mojira.dev

KYKY5435

Assigned

No issues.

Reported

View all
MCPE-238051 The Skybox in custom dimensions is messed up Confirmed MCPE-238045 Maps do not work correctly in custom dimensions Confirmed MCPE-235799 Shulker Boxes and Mob Skulls are transparent in the inventory menu initially when using texture streaming Confirmed MCPE-234669 Sheep eating animations stops other animations Duplicate MCPE-231559 Conversions between string and number is no longer supported in JSON UI Unconfirmed MCPE-229886 A player with an invalid custom skin does not hold items properly in third person and free cam. Plausible MCPE-229466 Spears are not held correctly when using an invalid custom skin Unconfirmed MCPE-229462 query.camera_rotation is aligned with the player’s head, not camera Confirmed MCPE-227006 Moving when using the script player.applyImpulse makes the player’s speed/movement/impulse greater than not moving Unconfirmed MCPE-226702 player.applyImpulse causes the player to phase through blocks Fixed

Comments

This affects copper golems too

[media: IMG_0964.png]

When you trade with a villager, it cannot change its trade again.

Only villagers you have not traded with can change their trades

This also affects iOS

Here is an example world too. This uses the same script as one the Minecraft creator YouTube channel.

[media]

Steps to Reproduce:

  1. Turn on Texture Streaming in settings.

  2. Create a creative mode world and open the creative mode inventory

  3. In the list with all the blocks, scroll down to the shulker box

Spears are also affected

[media: IMG_2212.png]

[media: ScreenRecording_01-09-2026 22-40-33_1.mov]

This bug might be reproduced if you have an invalid custom skin (“A local or platform skin could not be loaded”)

I have no resource packs/addons enabled

*Correction:

Lanterns can only be placed on shelves where the direction is only “west”, not “east”

Blocks that need support (such as redstone torches) can be placed above a shelf when “minecraft:cardinal_direction”=“south” for the shelf

Blocks that need support on the sides (such as ladders) can be placed on all sides in all shelf orientations.

Blocks that need support above (such as lanterns) can be placed below a shelf when “minecraft:cardinal_direction” is either “east” or “west”

Whether the shelf is touching other shelves or if there are blocks beneath a shelf does not matter

[media: IMG_0706.png]
[media: IMG_0707.png]

Yes

[media: ScreenRecording_08-17-2025 07-14-22_1.mp4]

Full code used:

import { world, system } from "@minecraft/server";

world.afterEvents.worldLoad.subscribe(() => {
	system.run(startupRepeat);
});

function startupRepeat() {
	const players = world.getPlayers();
	if (players.length > 0) {
		system.run(startup);
	} else {
		system.run(startupRepeat);
	}
}

function startup() {
	const players = world.getPlayers();

	system.run(start);

	system.runInterval(() => {
		system.run(main);
	});
}

function start() {}

function main() {
	let players = world.getPlayers();
	let overworld = world.getDimension("overworld");

	for (const player of players) {
		let playerLocation = player.location;

		if (playerLocation.y >= -63) {
			let playerLocationBlock = overworld.getBlock(playerLocation);

			if (playerLocationBlock.type.id === "minecraft:trip_wire") {
				player.applyImpulse({
					x: -0.5,
					y: 0,
					z: 0,
				});
			}
		}
	}
}

Load more comments