No more mutli-line descriptions
We have a method for this
This commit is contained in:
parent
5e1a38b271
commit
cb77b7821f
|
@ -1,5 +1,6 @@
|
|||
package WayofTime.bloodmagic.item.soul;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
|
@ -64,8 +65,7 @@ public class ItemSoulSnare extends Item
|
|||
@SideOnly(Side.CLIENT)
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List<String> tooltip, boolean advanced)
|
||||
{
|
||||
tooltip.add(TextHelper.localize("tooltip.BloodMagic.soulSnare.desc1"));
|
||||
tooltip.add(TextHelper.localize("tooltip.BloodMagic.soulSnare.desc2"));
|
||||
tooltip.addAll(Arrays.asList(TextHelper.cutLongString(TextHelper.localizeEffect("tooltip.BloodMagic.soulSnare.desc"))));
|
||||
|
||||
super.addInformation(stack, player, tooltip, advanced);
|
||||
}
|
||||
|
|
|
@ -252,8 +252,7 @@ tooltip.BloodMagic.soulGem.lesser=A gem used to contain some will
|
|||
tooltip.BloodMagic.soulGem.common=A gem used to contain more will
|
||||
tooltip.BloodMagic.soulGem.greater=A gem used to contain a greater amount of will
|
||||
tooltip.BloodMagic.soulGem.grand=A gem used to contain a large amount of will
|
||||
tooltip.BloodMagic.soulSnare.desc1=Throw at a monster and then
|
||||
tooltip.BloodMagic.soulSnare.desc2=kill them to obtain their demonic will
|
||||
tooltip.BloodMagic.soulSnare.desc=Throw at a monster and then kill them to obtain their demonic will
|
||||
|
||||
# Ritual
|
||||
ritual.BloodMagic.testRitual=Test Ritual
|
||||
|
|
Loading…
Reference in a new issue