mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Localized the Treasure Chest
This commit is contained in:
parent
551ecf0501
commit
8d54614a9d
3 changed files with 8 additions and 2 deletions
|
@ -153,8 +153,8 @@ public class BlockTreasureChest extends Block implements INameableItem{
|
|||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
|
||||
BlockUtil.addInformation(theBlock, list, 1, "");
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
||||
BlockUtil.addInformation(theBlock, list, 2, "");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -72,6 +72,7 @@ public class CreativeTab extends CreativeTabs{
|
|||
add(InitBlocks.blockTestifiBucksWhiteSlab);
|
||||
add(InitBlocks.blockColoredLamp);
|
||||
add(InitBlocks.blockLampPowerer);
|
||||
add(InitBlocks.blockTreasureChest);
|
||||
|
||||
add(InitItems.itemDrill);
|
||||
add(InitItems.itemDrillUpgradeSpeed);
|
||||
|
|
|
@ -193,6 +193,10 @@ item.actuallyadditions.itemResonantRice.name=Resonant Rice
|
|||
tooltip.actuallyadditions.itemResonantRice.desc=Don't know what it does... maybe if you right-click it?
|
||||
tooltip.actuallyadditions.itemResonantRice.uncraftable.desc=Uncraftable because there's no Mod installed that adds Enderium :(
|
||||
|
||||
tile.actuallyadditions.blockTreasureChest.name=Treasure Chest
|
||||
tooltip.actuallyadditions.blockTreasureChest.desc.1=A Chest found on the Ground of Deep Ocean Biomes
|
||||
tooltip.actuallyadditions.blockTreasureChest.desc.2=Maybe you'll get something awesome when you Right-Click it?
|
||||
|
||||
tile.actuallyadditions.blockCanolaPress.name=Canola Press
|
||||
tooltip.actuallyadditions.blockCanolaPress.desc=Makes Canola Oil from Canola
|
||||
tile.actuallyadditions.blockFermentingBarrel.name=Fermenting Barrel
|
||||
|
@ -542,6 +546,7 @@ container.actuallyadditions.enervator.name=Enervator
|
|||
container.nei.actuallyadditions.crushing.name=Crusher
|
||||
container.nei.actuallyadditions.ballOfHair.name=Ball Of Hair Usage
|
||||
container.nei.actuallyadditions.compost.name=Compost
|
||||
container.nei.actuallyadditions.treasureChest.name=Treasure Chest
|
||||
|
||||
container.nei.actuallyadditions.coffee.name=Coffee Machine
|
||||
container.nei.actuallyadditions.coffee.special=Special Feature
|
||||
|
|
Loading…
Reference in a new issue