The bug
When breaking a minecart (any type) in survival a renamed minecart item is created. In previous versions a renamed minecart was only dropped if the minecart was renamed before.
Additionally some minecart types have no translation and are displayed as: entity.
+ Entity type + .name
Full list:entity.MinecartRideable.name
entity.MinecartFurnace.name
entity.MinecartTNT.name
Minecart with Chest
Minecart with Hopper
How to reproduce
Place any type of minecart and break it in Survival mode.
The reason
The following is based on decompiled version of Minecraft 1.9 using MCP 9.24 beta. All method and class names are the names used in the decompiled version.
The reason why this happens is because in previous versions the class net.minecraft.entity.item.EntityMinecart
had an extra field for the custom name that would be used for dropping the item (this required a lot of methods to be overridden). In 1.9 minecarts do not have this extra field anymore. The problem is that the method net.minecraft.entity.item.EntityMinecart.killMinecart(DamageSource)
uses the method net.minecraft.entity.Entity.getName()
to test whether or not the minecart has a custom name. This method will always return a string because this method is used for displaying for example the entity name in the chat. Instead the method of the minecart should test if it has a custom name.
public void killMinecart(DamageSource source)
{
this.setDead();
if (this.worldObj.getGameRules().getBoolean("doEntityDrops"))
{
ItemStack itemstack = new ItemStack(Items.minecart, 1);
// Replaced this
//if (this.getName() != null)
//{
// itemstack.setStackDisplayName(this.getName());
//}
if (this.hasCustomName())
{
itemstack.setStackDisplayName(this.getCustomNameTag());
}
this.entityDropItem(itemstack, 0.0F);
}
}
Linked issues
is duplicated by 95
relates to 1
Attachments
Comments 39
Confirmed for 16w04a, also the display name is not checked by the game code. What matters is that the string pointed to by container.minecart is not displaying, Marcono1234.
That should be covered by the first point:
The GUI of a MinecartChest and MinecartHopper both shows
container.minecart
. This has a translation but is despite that not translated.
Confirmed for 16w07b
Furnace Minecarts experience a similar issue. Breaking them will drop a Minecart that's named entity.MinecartFurnace.name.
The dropped minecarts also have this titles and it also affects minecarts with TNT or furnace.