From 6599b089a7d259ddf0313b10e26e00ab116d3699 Mon Sep 17 00:00:00 2001 From: lordIcocain <62835225+lordIcocain@users.noreply.github.com> Date: Sat, 23 Sep 2023 18:31:15 +0300 Subject: ME hatch`s additional connection mode and small fixes (#2291) * ME hatch`s improvements (?) * ForgeDirection.UNKNOWN not allowed Better description No check before getBoolean * Add description in tooltip Chat message using localization Stocking bus data stick will copy/paste connection mode * Chinese localization * Another method localization * code style --- src/main/java/gregtech/api/metatileentity/BaseMetaTileEntity.java | 1 - 1 file changed, 1 deletion(-) (limited to 'src/main/java/gregtech/api') diff --git a/src/main/java/gregtech/api/metatileentity/BaseMetaTileEntity.java b/src/main/java/gregtech/api/metatileentity/BaseMetaTileEntity.java index b42e7a1a82..57a55fc17e 100644 --- a/src/main/java/gregtech/api/metatileentity/BaseMetaTileEntity.java +++ b/src/main/java/gregtech/api/metatileentity/BaseMetaTileEntity.java @@ -2386,7 +2386,6 @@ public class BaseMetaTileEntity extends CommonMetaTileEntity @Override public IGridNode getGridNode(ForgeDirection forgeDirection) { - if (mFacing != forgeDirection) return null; final AENetworkProxy gp = getProxy(); return gp != null ? gp.getNode() : null; } -- cgit