diff options
author | Technus <daniel112092@gmail.com> | 2017-06-04 08:46:43 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2017-06-04 08:46:43 +0200 |
commit | 5ee0a616bf1aa1f1cfd229b7c5d936e16868efc0 (patch) | |
tree | 2fdea405386952f34503f174dc5194fc4f0f6af8 /src | |
parent | 127bc9fc1b01e011b69e3913771dc7a0037ecab7 (diff) | |
download | GT5-Unofficial-5ee0a616bf1aa1f1cfd229b7c5d936e16868efc0.tar.gz GT5-Unofficial-5ee0a616bf1aa1f1cfd229b7c5d936e16868efc0.tar.bz2 GT5-Unofficial-5ee0a616bf1aa1f1cfd229b7c5d936e16868efc0.zip |
Missing override added
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java b/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java index ef4f4f1362..5254b0481b 100644 --- a/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java +++ b/src/main/java/gregtech/api/metatileentity/MetaPipeEntity.java @@ -692,4 +692,9 @@ public abstract class MetaPipeEntity implements IMetaTileEntity { public void onCreated(ItemStack aStack, World aWorld, EntityPlayer aPlayer) { // } + + @Override + public boolean allowGeneralRedstoneOutput(){ + return false; + } }
\ No newline at end of file |