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");
|
||||
|
||||
config = ConfigTechReborn.initialize(new File(path));
|
||||
LogHelper.info("PreInitialization Compleate");
|
||||
LogHelper.info("PreInitialization Complete");
|
||||
}
|
||||
|
||||
@Mod.EventHandler
|
||||
|
@ -75,7 +75,7 @@ public class Core {
|
|||
FMLCommonHandler.instance().bus()
|
||||
.register(new MultiblockServerTickHandler());
|
||||
|
||||
LogHelper.info("Initialization Compleate");
|
||||
LogHelper.info("Initialization Complete");
|
||||
}
|
||||
|
||||
@Mod.EventHandler
|
||||
|
|
|
@ -447,12 +447,13 @@ public class CablePart extends ModPart implements IEnergyConductor {
|
|||
@Override
|
||||
public boolean acceptsEnergyFrom(TileEntity tileEntity,
|
||||
ForgeDirection forgeDirection) {
|
||||
return connectedSides.containsKey(forgeDirection);
|
||||
return connectedSides.containsKey(forgeDirection.getOpposite());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean emitsEnergyTo(TileEntity tileEntity,
|
||||
ForgeDirection forgeDirection) {
|
||||
return connectedSides.containsKey(forgeDirection);
|
||||
//This is not called.
|
||||
return connectedSides.containsKey(forgeDirection.getOpposite());
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue