diff options
author | lordIcocain <62835225+lordIcocain@users.noreply.github.com> | 2023-09-23 18:31:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-23 17:31:15 +0200 |
commit | 6599b089a7d259ddf0313b10e26e00ab116d3699 (patch) | |
tree | 3c5cc263f4a92f0c201d865a9e924581eda6edd4 /src/main/java/gregtech/api | |
parent | 66bd6b92334dae185c7fb42d04cae838db77ae1d (diff) | |
download | GT5-Unofficial-6599b089a7d259ddf0313b10e26e00ab116d3699.tar.gz GT5-Unofficial-6599b089a7d259ddf0313b10e26e00ab116d3699.tar.bz2 GT5-Unofficial-6599b089a7d259ddf0313b10e26e00ab116d3699.zip |
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
Diffstat (limited to 'src/main/java/gregtech/api')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/BaseMetaTileEntity.java | 1 |
1 files changed, 0 insertions, 1 deletions
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; } |