Localizations for new Machines
This commit is contained in:
parent
34010525ba
commit
44814c1aa9
4 changed files with 11 additions and 3 deletions
|
@ -3,6 +3,7 @@ package techreborn.blocks;
|
|||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.tiles.TileGrinder;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockContainer;
|
||||
import net.minecraft.block.material.Material;
|
||||
|
@ -36,7 +37,7 @@ public class BlockGrinder extends BlockContainer{
|
|||
@Override
|
||||
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_)
|
||||
{
|
||||
return null;
|
||||
return new TileGrinder();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -3,6 +3,7 @@ package techreborn.blocks;
|
|||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.tiles.TileImplosionCompressor;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockContainer;
|
||||
import net.minecraft.block.material.Material;
|
||||
|
@ -36,7 +37,7 @@ public class BlockImplosionCompressor extends BlockContainer{
|
|||
@Override
|
||||
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_)
|
||||
{
|
||||
return null;
|
||||
return new TileImplosionCompressor();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -3,6 +3,7 @@ package techreborn.blocks;
|
|||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.tiles.TileMatterFabricator;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockContainer;
|
||||
import net.minecraft.block.material.Material;
|
||||
|
@ -36,7 +37,7 @@ public class BlockMatterFabricator extends BlockContainer{
|
|||
@Override
|
||||
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_)
|
||||
{
|
||||
return null;
|
||||
return new TileMatterFabricator();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -10,6 +10,10 @@ tile.techreborn.machineCasing.Standard.name=Standard Casing
|
|||
tile.techreborn.machineCasing.Reinforced.name=Reinforced Casing
|
||||
tile.techreborn.machineCasing.Advanced.name=Advanced Casing
|
||||
tile.techreborn.blastfurnace.name=Blast Furnace
|
||||
tile.techreborn.matterfabricator.name=Matter Fabricator
|
||||
tile.techreborn.implosioncompressor.name=Implosion Compressor
|
||||
tile.techreborn.grinder.name=Industrial Grinder
|
||||
|
||||
|
||||
#Ores
|
||||
tile.techreborn.ore.Galena.name=Galena Ore
|
||||
|
@ -267,6 +271,7 @@ item.techreborn.part.BronzeMachineHull.name=Bronze Machine Hull
|
|||
item.techreborn.part.SteelMachineHull.name=Steel Machine Hull
|
||||
item.techreborn.part.TitaniumMachineHull.name=Titanium Machine Hull
|
||||
item.techreborn.part.BrassMachineHull.name=Brass Machine Hull
|
||||
item.techreborn.uumattaer.name=UU Matter
|
||||
|
||||
#Tools
|
||||
item.techreborn.rockcutter.name=Rockcutter
|
||||
|
|
Loading…
Reference in a new issue