Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf committed Jan 28, 2025
1 parent 79bcb71 commit 992e87b
Show file tree
Hide file tree
Showing 28 changed files with 1,546 additions and 714 deletions.
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* For more details, see https://docs.gradle.org/8.0.1/userguide/java_library_plugin.html#sec:java_library_configurations_graph
*/
dependencies {
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.51.06:dev'){ transitive = false }
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.51.99:dev'){ transitive = false }

api("com.github.GTNewHorizons:StructureLib:1.4.0:dev")
api("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/reobf/proghatches/block/BlockIOHub.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import appeng.items.tools.quartz.ToolQuartzCuttingKnife;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import gregtech.api.multitileentity.multiblock.base.MultiBlockPart;

import gregtech.common.blocks.MaterialMachines;

import net.minecraft.block.BlockContainer;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/reobf/proghatches/eucrafting/AECover.java
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ default public void gridChanged() {
}

default public void destroy() {
MyMod.LOG.info("Node destroy@" + getPos());
//MyMod.LOG.info("Node destroy@" + getPos());

try {if(this.getProxy().getNode()==null)return;
IReadOnlyCollection<IGridConnection> col = this.getProxy().getNode().getConnections();
Expand Down Expand Up @@ -787,7 +787,7 @@ protected Data doCoverThingsImpl(ForgeDirection side, byte aInputRedstone, int a

}
if(!found){
MyMod.LOG.info("Node internal connect@" + data.getPos());
//MyMod.LOG.info("Node internal connect@" + data.getPos());
new GridConnection(thiz, host.getNode(), ForgeDirection.UNKNOWN);}
} catch (FailedConnection e) {

Expand Down Expand Up @@ -827,7 +827,7 @@ protected Data doCoverThingsImpl(ForgeDirection side, byte aInputRedstone, int a
IGridNode thiz = data.getProxy().getNode();
new GridConnection(thiz, thenode, side);

MyMod.LOG.info("Node connect@" + data.getPos());
//MyMod.LOG.info("Node connect@" + data.getPos());
} catch (FailedConnection e) {

//System.out.println(item.a());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void update(ICoverable aTileEntity) {
try {
new GridConnection(thiz, thenode, ForgeDirection.UNKNOWN);

MyMod.LOG.info(info + " Bridging Node connect@" + this.getPos() + " " + this.side + "->" + dir);
//MyMod.LOG.info(info + " Bridging Node connect@" + this.getPos() + " " + this.side + "->" + dir);
} catch (FailedConnection e) {
System.out.println(this.getProxy().getNode());
System.out.println(thenode);
Expand Down
Loading

0 comments on commit 992e87b

Please sign in to comment.