Typo DosntDespawn

This commit is contained in:
thatsIch 2014-09-21 00:58:27 +02:00
parent a738738cbf
commit 5cb47b4407
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ public enum ButtonToolTips
Stash, StashDesc, Encode, EncodeDescription, Substitutions, SubstitutionsOn, SubstitutionsOff, SubstitutionsDesc, CraftOnly, CraftEither,
Craft, Mod, DosntDespawn, EmitterMode, CraftViaRedstone, EmitWhenCrafing, ReportInaccessibleItems, ReportInaccessibleItemsYes, ReportInaccessibleItemsNo;
Craft, Mod, DoesntDespawn, EmitterMode, CraftViaRedstone, EmitWhenCrafing, ReportInaccessibleItems, ReportInaccessibleItemsYes, ReportInaccessibleItemsNo;
String root;

View file

@ -125,7 +125,7 @@ public class ItemCrystalSeed extends AEBaseItem implements IGrowableCrystal
@Override
public void addInformation(ItemStack stack, EntityPlayer p, List l, boolean b)
{
l.add( ButtonToolTips.DosntDespawn.getLocal() );
l.add( ButtonToolTips.DoesntDespawn.getLocal() );
int progress = getProgress( stack ) % SINGLE_OFFSET;
l.add( Math.floor( (float) progress / (float) (SINGLE_OFFSET / 100) ) + "%" );
super.addInformation( stack, p, l, b );