Fixed spelling
This commit is contained in:
parent
bd59b48d02
commit
fc82d9aa56
2 changed files with 5 additions and 4 deletions
|
@ -45,7 +45,7 @@ public class Core {
|
||||||
.replace(ModInfo.MOD_ID, "TechReborn");
|
.replace(ModInfo.MOD_ID, "TechReborn");
|
||||||
|
|
||||||
config = ConfigTechReborn.initialize(new File(path));
|
config = ConfigTechReborn.initialize(new File(path));
|
||||||
LogHelper.info("PreInitialization Compleate");
|
LogHelper.info("PreInitialization Complete");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Mod.EventHandler
|
@Mod.EventHandler
|
||||||
|
@ -75,7 +75,7 @@ public class Core {
|
||||||
FMLCommonHandler.instance().bus()
|
FMLCommonHandler.instance().bus()
|
||||||
.register(new MultiblockServerTickHandler());
|
.register(new MultiblockServerTickHandler());
|
||||||
|
|
||||||
LogHelper.info("Initialization Compleate");
|
LogHelper.info("Initialization Complete");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Mod.EventHandler
|
@Mod.EventHandler
|
||||||
|
|
|
@ -447,12 +447,13 @@ public class CablePart extends ModPart implements IEnergyConductor {
|
||||||
@Override
|
@Override
|
||||||
public boolean acceptsEnergyFrom(TileEntity tileEntity,
|
public boolean acceptsEnergyFrom(TileEntity tileEntity,
|
||||||
ForgeDirection forgeDirection) {
|
ForgeDirection forgeDirection) {
|
||||||
return connectedSides.containsKey(forgeDirection);
|
return connectedSides.containsKey(forgeDirection.getOpposite());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean emitsEnergyTo(TileEntity tileEntity,
|
public boolean emitsEnergyTo(TileEntity tileEntity,
|
||||||
ForgeDirection forgeDirection) {
|
ForgeDirection forgeDirection) {
|
||||||
return connectedSides.containsKey(forgeDirection);
|
//This is not called.
|
||||||
|
return connectedSides.containsKey(forgeDirection.getOpposite());
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue