fix style
This commit is contained in:
parent
ba8608f7aa
commit
eac078658c
1 changed files with 4 additions and 3 deletions
|
@ -187,7 +187,8 @@ public class BuildCraftSilicon extends BuildCraftMod {
|
|||
CoreProxy.proxy.registerBlock(laserBlock);
|
||||
|
||||
assemblyTableBlock = new BlockLaserTable();
|
||||
CoreProxy.proxy.registerBlock(assemblyTableBlock.setBlockName("laserTableBlock"), ItemLaserTable.class);
|
||||
assemblyTableBlock.setBlockName("laserTableBlock");
|
||||
CoreProxy.proxy.registerBlock(assemblyTableBlock, ItemLaserTable.class);
|
||||
|
||||
zonePlanBlock = new BlockZonePlan();
|
||||
zonePlanBlock.setBlockName("zonePlan");
|
||||
|
@ -604,8 +605,8 @@ public class BuildCraftSilicon extends BuildCraftMod {
|
|||
}
|
||||
|
||||
@Mod.EventHandler
|
||||
public void remap(FMLMissingMappingsEvent event){
|
||||
for (FMLMissingMappingsEvent.MissingMapping mapping: event.get()){
|
||||
public void remap(FMLMissingMappingsEvent event) {
|
||||
for (FMLMissingMappingsEvent.MissingMapping mapping: event.get()) {
|
||||
if (mapping.name.equals("BuildCraft|Silicon:null"))
|
||||
mapping.remap(laserBlock);
|
||||
|
||||
|
|
Loading…
Reference in a new issue