diff options
author | repo-alt <wvk17@yandex.ru> | 2023-03-14 22:17:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 20:17:26 +0100 |
commit | 1bfd3b2d668bae5253edd292e7a37ba47bb3f877 (patch) | |
tree | d158538288f9df68ae85718033305e157d936371 /src/main/java/gregtech/api/interfaces/tileentity/IEnergyConductor.java | |
parent | f77689cb0ce4a8cecbd5958a5c51b7901525c5bf (diff) | |
download | GT5-Unofficial-1bfd3b2d668bae5253edd292e7a37ba47bb3f877.tar.gz GT5-Unofficial-1bfd3b2d668bae5253edd292e7a37ba47bb3f877.tar.bz2 GT5-Unofficial-1bfd3b2d668bae5253edd292e7a37ba47bb3f877.zip |
Untangle IEnergyConnected and IHasWorldObjectAndCoords to allow FMP tiles to support IEnergyConnected (#1794)
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IEnergyConductor.java')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/tileentity/IEnergyConductor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConductor.java b/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConductor.java index f136434c54..e285c6f0e3 100644 --- a/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConductor.java +++ b/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConductor.java @@ -7,7 +7,7 @@ import gregtech.api.enums.Materials; * <p/> * Not all Data might be reliable. This is just for Information sake. */ -public interface IEnergyConductor extends IEnergyConnected { +public interface IEnergyConductor extends IEnergyConnected, IHasWorldObjectAndCoords { /** * @return if this is actually a Cable. (you must check this) |