Skip to content
This repository has been archived by the owner on Mar 10, 2021. It is now read-only.

Commit

Permalink
Fix mob-head-removal on part replacement duplicating one of the tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Feb 28, 2015
1 parent 07dfff8 commit ff4a97b
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -435,6 +435,9 @@ private static void removeMobHeadModifier(NBTTagCompound tags)
{
tags.setString("ModifierTip" + (i-2), tags.getString(modTip));
tags.setString("Tooltip" + (i-2), tags.getString(toolTip));

tags.removeTag(modTip);
tags.removeTag(toolTip);
continue;
}

Expand Down

0 comments on commit ff4a97b

Please sign in to comment.