Worked on lang file a bit
This commit is contained in:
parent
c950f24580
commit
d048d92da4
2 changed files with 18 additions and 1 deletions
|
@ -107,3 +107,17 @@ tile.dark\:TinOre.name = Tin Ore
|
||||||
tile.dark\:LeadOre.name = Lead Ore
|
tile.dark\:LeadOre.name = Lead Ore
|
||||||
tile.dark\:AluminumOre.name = Bauxite Stone
|
tile.dark\:AluminumOre.name = Bauxite Stone
|
||||||
tile.dark\:SilverOre.name = Silver Ore
|
tile.dark\:SilverOre.name = Silver Ore
|
||||||
|
|
||||||
|
# Items
|
||||||
|
item.BronzeTube.name=Bronze Tube
|
||||||
|
item.IronTube.name=Iron Tube
|
||||||
|
item.ObbyTube.name=Obby Tube
|
||||||
|
item.NetherTube.name=Nether Tube
|
||||||
|
item.LeatherSeal.name=Leather Seal
|
||||||
|
item.SlimeSeal.name=Slime Seal
|
||||||
|
item.UnfinishedTank.name=Unfinished Tank
|
||||||
|
item.ValvePart.name=Valve
|
||||||
|
|
||||||
|
item.DMTools.0.name=Pipe Gauge
|
||||||
|
item.DMTools.1.name=MultiMeter
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,10 @@ public class BlockDebug extends BlockMachine implements IExtraObjectInfo
|
||||||
super.registerIcons(iconReg);
|
super.registerIcons(iconReg);
|
||||||
for (DebugBlocks block : DebugBlocks.values())
|
for (DebugBlocks block : DebugBlocks.values())
|
||||||
{
|
{
|
||||||
block.icon = iconReg.registerIcon(DarkMain.getInstance().PREFIX + block.getTextureName());
|
if (block.enabled)
|
||||||
|
{
|
||||||
|
block.icon = iconReg.registerIcon(DarkMain.getInstance().PREFIX + block.getTextureName());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue