-
Bug
-
Resolution: Unresolved
-
None
-
Minecraft 1.11.2, Minecraft 1.12 Pre-Release 2, Minecraft 1.13-pre10, Minecraft 1.14.1, 1.15.1, 1.15.2, 1.16 Pre-release 2, 1.16 Release Candidate 1, 1.16, 1.16.4, 20w45a, 21w18a, 1.17, 21w37a, 24w34a
-
Confirmed
-
(Unassigned)
The bug
The activator rail check is done with the rail block a minecart was on before it was moved. This means if it moves from a normal rail to an activator rail the minecart is not activated in this tick.
How to reproduce
- Build a setup as shown in Setup.png
- Place some items in the chest
- Put a hopper minecart on the powered / golden rail
- Right click the hopper minecart after it reached the end of the track
→ It picked up one item
Code analysis
Based on 1.11.2 decompiled using MCP 9.35 rc1
The method net.minecraft.entity.item.EntityMinecart.onUpdate() tests if the block the minecart was on before it moved is an activator rail. Instead it should probably test the block the minecart is on after it was moved (on rails or derailed).